blob: a2df018d41bf17578259641d86621c480a286da0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<script src="animate.js" type="text/javascript"></script>
</head>
<body>
<div id="container">
<table id="rel" style="left: 0; top: 0;">
<tr><td>position relative</td></tr>
</table>
</div>
<script>
animate({top: 10, left: 20}, 100);
</script>
</body>
</html>
|