зеркало из https://github.com/mozilla/gecko-dev.git
19 строки
329 B
HTML
19 строки
329 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
document.documentElement.style.animation = "137438953471s bounce";
|
|
document.documentElement.offsetHeight;
|
|
document.documentElement.style.animationIterationCount = "infinite";
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="boom();"></body>
|
|
</html>
|