-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathremote.html
More file actions
45 lines (41 loc) · 1.23 KB
/
remote.html
File metadata and controls
45 lines (41 loc) · 1.23 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- <embed src="video/skystar.mp3" hidden="true" autostart="true" loop="true"> -->
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>tonight, the stars are shining for u ~</title>
<!-- 今晚,整片星空将为你一人闪烁 -->
<style>
#videofilm {
width: 100%;
height: auto;
position: fixed;
z-index: -1;
}
h1{
font-size: 36px;
color: #B1BCE6;
font-family: '楷体';
}
</style>
<link rel="stylesheet" href="css/skystar.css">
</head>
<body>
<video autoplay="autoplay" id="videofilm" poster="img/skystar2.jpg" >
<source src="video/skystar.mp4" type="video/mp4">
</video>
<div class="textone">
<h1>look at the stars</h1>
<!-- 仰望星空 -->
</div>
<div class="text">
<h1>look how they shine for u</h1>
<!-- 看它们为你闪耀 -->
</div>
<div class="container"></div>
<script src="js/skystar.js"></script>
<!-- <audio src="video/skystar.mp3" autoplay="autoplay"></audio> -->
</body>
</html>