23 lines
571 B
HTML
23 lines
571 B
HTML
<!DOCTYPE HTML>
|
|
<html class="reftest-wait">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<style>
|
|
body { transform:translateY(100px); white-space: pre; }
|
|
p { margin: 0; }
|
|
span { padding: 2px; color: red; background: blue; }
|
|
</style>
|
|
<script>
|
|
function test(n) {
|
|
document.body.style.transform = "translateY(" + n + "px)";
|
|
if (n > 10) {
|
|
setTimeout("test(" + (n - 10) + ")", 0);
|
|
} else {
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="test(100)"><p> <span> </span> </p>
|
|
</body>
|
|
</html>
|