forked from alimd/OldWebProgrammingTuts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest4.html
43 lines (40 loc) · 769 Bytes
/
test4.html
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
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8" />
<title>Oontitled Document</title>
<style type="text/css">
*{
padding: 0;
margin: 0;
}
div.container{
width :950px;
margin :0 auto;
}
div.box > div{
width :100px;
height :100px;
background-color :darkmagenta;
margin-bottom:10px;
}
</style>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
$(function(){
$('div.box1').animate({'margin-left':'400px'},1000);
$('div.box2').animate({'margin-left':'400px'},1300);
$('div.box3').animate({'margin-left':'400px'},1600);
});
</script>
</head>
<body>
<div class="container">
<div class="box">
<div class="box1"></div>
<div class="box2"></div>
<div class="box3"></div>
</div>
</div>
</body>
</html>