-
Notifications
You must be signed in to change notification settings - Fork 0
/
分享到
52 lines (52 loc) · 1.29 KB
/
分享到
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
<meta charset="utf-8" />
</head>
<style>
#div1 {
width:150px;height:200px;background:green;position:absolute;left:-150px
}
#div1 span {
position:absolute;width:20px;height:60px;line-height:20px;background:blue;right:-20px;top:70px;
}
</style>
<script>
window.onload = function () {
var oDiv = document.getElementById('div1');
oDiv.onmouseover = function () {
startMove(0);
}
oDiv.onmouseout = function () {
startMove(-150);
}
};
var timer = null;
function startMove(iTarget) {
var oDiv = document.getElementById('div1');
clearInterval(timer);
timer = setInterval(function () {
var speed = 0;
if (oDiv.offsetLeft > iTarget) {
speed = -10;
}
else {
speed = 10;
}
if (oDiv.offsetLeft == iTarget) {
clearInterval(timer);
}
else {
oDiv.style.left = oDiv.offsetLeft + speed + 'px';
}
}, 30)
}
</script>
<body>
<div id="div1">
<span>分享到</span>
</div>
</body>
</html>