-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (62 loc) · 1.3 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
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
html, body {
padding: 0;
margin: 0;
}
body {
font-family: Arial;
padding: 30px;;
}
div {
background-color: #f5f5f5;
border: 2px solid #aaa;
box-sizing: border-box;
font-size: 36px;
height: 500px;
position: relative;
margin-bottom: 30px;
text-align: center;
}
span {
display: inline-block;
margin-top: -21px;
position: absolute;
top: 50%;
}
</style>
<link type="text/css" rel="stylesheet" href="/dist/css/entry.css" />
<script type="text/javascript" src="/dist/js/entry.js"></script>
</head>
<body>
<div class="entryjs entryjs-bottom">
<span>A</span>
</div>
<div class="entryjs entryjs-right">
<span>B</span>
</div>
<div class="entryjs entryjs-bottom">
<span>C</span>
</div>
<div class="entryjs entryjs-top">
<span>D</span>
</div>
<div class="entryjs entryjs-right">
<span>E</span>
</div>
<div class="entryjs entryjs-no-translate">
<span>F</span>
</div>
<div class="entryjs entryjs-left" data-entryjs-delay="1000">
<span>G</span>
</div>
</body>
<script type="text/javascript">
var entry = new Entry();
entry.init();
</script>
</html>