-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
63 lines (58 loc) · 1.31 KB
/
index.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
<!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>Document</title>
<script src="bundle.js"></script>
<style>
html,
body {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
}
.box {
position: absolute;
height: 240px;
width: 240px;
background: red;
z-index: 0;
}
</style>
</head>
<body>
<div class="box" id="t1" style="top: 100px;left: 50%;"></div>
<div class="box" id="t2" style="top: 500px;left: 500px; width: 40px; height: 40px"></div>
</body>
<script>
new Guide([
{
selector: '#t1',
src: 'img/pic-1.png',
delay: 500,
before: function (done) {
done()
},
handler: function (el, img, option) {
return {
x: -img.width + el.offsetWidth + (img.height - el.offsetWidth) / 2,
y: -(img.height - el.offsetHeight) / 2
}
}
},
{
selector: '#t2',
src: 'img/pic-1.png',
handler: function (el, img, option) {
return {
x: -img.width + el.offsetWidth + (img.height - el.offsetWidth) / 2,
y: -(img.height - el.offsetHeight) / 2
}
}
}
])
</script>
</html>