-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1.html
More file actions
32 lines (25 loc) · 684 Bytes
/
Copy path1.html
File metadata and controls
32 lines (25 loc) · 684 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<html>
<head>
<link rel="stylesheet" href="ST.CSS">
<script type="text/javascript">
var i = 1300;
function myLoop() {
setTimeout(function () {
document.getElementById("di1").style.width = i + 'px';
i--; // increment the counter
if (i > 800) {
myLoop();
}
}, 20)
}
</script>
</head>
<body>
<div class="scrol">
<img id="di1" src="http://che-guevara.od.ua/images/stories/fpslide/Image00005.jpg" title="" alt="">
<script type="text/javascript">
myLoop();
</script>
</div>
</body>
</html>