-
Notifications
You must be signed in to change notification settings - Fork 0
/
animal.html
61 lines (55 loc) · 1.43 KB
/
animal.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>动画测试</title>
<style>
html, p, body {
margin: 0;
padding: 0;
}
button {
margin: 0 610px;
}
.container {
width: 800px;
height: 800px;
background-color: yellow;
position: relative;
margin: auto;
}
.animate {
width: 50px;
height: 50px;
background-color: red;
position: absolute;
border-radius: 50%;
}
</style>
</head>
<body>
<p><button id="start" onclick="move()">开始动画</button></p>
<div class="container">
<div class="animate"></div>
</div>
<script>
// 点击动画函数
function move() {
var square = document.getElementsByClassName("animate");
var pos = 0;
var id = setInterval(moveStart, 1);
function moveStart() {
if (pos == 750) {
clearInterval(id);
}else{
pos++;
square[0].style.top = pos + 'px';
square[0].style.left = pos + 'px';
}
}
}
</script>
</body>
</html>