blob: e9eb3a981f1a299efd9604d342581a613d95229a (
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="right: -400px; bottom: -400px;">
<tr><td>position relative</td></tr>
</table>
</div>
<script>
animate({bottom: 10, right: 20}, 100);
</script>
</body>
</html>
|