-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (30 loc) · 746 Bytes
/
index.html
File metadata and controls
35 lines (30 loc) · 746 Bytes
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
<!DOCTYPE html>
<html>
<head>
<META http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta content="yes" name="apple-mobile-web-app-capable">
<meta content="yes" name="apple-touch-fullscreen">
<meta content="telephone=no" name="format-detection">
<meta content="black" name="apple-mobile-web-app-status-bar-style">
<meta name="viewport" content="width=device-width,minimum-scale=1.0,maximum-scale=1.0"/>
<title>手势</title>
<style type="text/css" media="screen">
html,body{
width: 100%;
height: 100%;
overflow: hidden;
}
div{
width:100%;
height:100%;
background:rgba(0,0,255,0.5);
cursor:url(./hand_white.cur),auto;
overflow: hidden;
}
</style>
</head>
<body>
<div>
</div>
</body>
</html>