-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (48 loc) · 1.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://unpkg.com/keyboard-css@1.2.4/dist/css/main.min.css" />
<title>Base</title>
<style>
*{
user-select: none;
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
-o-user-select: none;
}
body{
margin: 0;
}
#realcontent{
width: 3000px;
height: 3000px;
background-image: url('https://lh3.googleusercontent.com/3WXb6deIT2jQbCfeSGZvAaVtMgSYjWgbNBjb24lSNyln97PnlpIkl1bAdsSCvPmOoNWwjyKorxsoYZy3IvvbK5uxSWkw-uC2EZ0zY1Je2sbWYnzyZu--9usJ17JpFuQWgd_5aIt9q4-AZhx5_A');
}
#area{
-ms-overflow-style: none; /* for Internet Explorer, Edge */
scrollbar-width: none; /* for Firefox */
overflow-y: scroll;
-ms-overflow-style: none; /* for Internet Explorer, Edge */
position:relative;
width: 100%;
height:100vh;
}
#area::-webkit-scrollbar {
display: none; /* for Chrome, Safari, and Opera */
}
#p{
}
</style>
</head>
<body>
<div id="area">
<div id="realcontent" >
</div>
</div>
<script src="dist/move.js"></script>
</body>
</html>