-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
59 lines (49 loc) · 1.42 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Chuyuxuan</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<body class="body1">
<div class="video" >
<video id="video" class="video" muted autoplay loop>
<source src="src/1.mp4" type="video/mp4" />
<!-- 注意,可以将自己的视频链接修改。 -->
</video>
<div id="audio">
<i class="fa fa-volume-up fa-fw" onclick="play()"></i>开
<br>
<i class="fa fa-volume-off fa-fw" onclick="muted()"></i>关
</div>
<script>
function play(){
var plays=document.getElementById("video");
plays.muted=false;
}
function muted(){
var plays=document.getElementById("video");
plays.play();
plays.muted = true;
}
</script>
</div>
<div>
</div>
<div class="login-form">
<h1>进入神的世界</h1>
<div class="form-input">
<input type="text" name="email" placeholder="请输入账号">
</div>
<div class="form-input">
<input type="password" name="password" placeholder="请输入密码">
</div>
<div class="form-input">
<a href="404.html">
<button type="button" name="login in" >登 录</button>
</a>
</div>
<a href="404.html" class="forget">我忘记了通行证</a>
</div>
</body>
</html>