-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
101 lines (97 loc) · 2.17 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width,initial-scale=1,maximum-scale=1.0, user-scalable=no"
/>
<style>
body {
margin: 0;
padding: 0;
}
#pin {
z-index: 999;
}
#main {
position: relative;
margin: 0;
/* min-height: 300vh; */
}
#canvas-wrapper {
position: absolute;
top: 0;
left: 0;
z-index: 99999;
}
.btn {
padding: 10px;
background-color: green;
position: relative;
}
#btn0 {
background-color: green;
top: 100px;
left: 652px;
}
#btn1 {
background-color: purple;
top: 400px;
left: 542px;
}
#btn2 {
background-color: pink;
top: 320px;
left: 702px;
}
#btn3 {
background-color: red;
top: 900px;
left: 300px;
}
#btn4 {
background-color: yellow;
top: 1200px;
left: 500px;
}
#cssom:hover {
background-color: blue !important;
width: 1000px !important;
transition: all 0.3s ease !important;
}
</style>
</head>
<body>
<div id="stats"></div>
<div id="main"></div>
<div class="container">
<button id="btn0" class="btn" vgesturable onclick="alert('clicked! 0')">
Click ME!!!
</button>
<div>
<button
id="btn1"
class="btn"
vgesturable
onclick="alert('clicked! 1')"
>
Click ME!!! 1
</button>
<button id="toggle">123123123</button>
</div>
<button id="btn2" class="btn" vgesturable >
<div > adninergionreiognreiog inor</div>
Click ME!!! 2
</button>
</div>
</div>
<button id="btn3" class="btn" vgesturable onclick="alert('clicked!')">
Scroll and Click ME!!! 3
</button>
<button id="btn4" class="btn" vgesturable onclick="alert('clicked!')">
Scroll and Click ME!!! 4
</button>
</body>
<script type="module" src="/src/main.ts"></script>
</html>