-
Notifications
You must be signed in to change notification settings - Fork 0
/
test 方法调用参考.html
80 lines (74 loc) · 1.51 KB
/
test 方法调用参考.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
*{
margin: 0;
padding: 0;
}
.boss{
width: 100px;
height: 100px;
background-color: red;
}
#boss{
width: 100px;
height: 300px;
background-color: blue;
position: absolute;
left: 200px;
top: 200px;
}
#wrap{
width: 200px;
height:200px;
background-color: #ccc;
position: absolute;
left: 100px;
top: 100px;
}
h2{
background-color: deepskyblue;
}
#box4{
width: 100px;
height: 100px;
background-color: blue;
z-index: 2;
position: absolute;
top: 0;
right: 0;
}
</style>
</head>
<div id="box">dsfgfdgdgrgrgreg</div>
<div class="boss">居中显示</div>
<div id="wrap">
<h2 id="box1">拖拽(适用于pc端)</h2>
</div>
<div id="box4">抖动</div>
<body>
<script src="./js/common.js"></script>
<script>
//调取模态层
var box = document.getElementById("box")
box.onclick = function(){
// model()
alertBox("wooooooo")
}
//居中
var bos1s = document.getElementsByClassName("boss")[0]
showCenter(bos1s);
//拖拽
var wrap = document.getElementById("wrap")
var box1 = document.getElementById("box1")
dragBox(wrap,box1)
//抖动
var box4 = document.getElementById("box4")
shake(box4,60,'left')
</script>
</body>
</html>