-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
71 lines (66 loc) · 2.22 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
<!DOCTYPE>
<html>
<head>
<meta charset="utf-8" />
<title>Bad Apple!!</title>
<link rel="stylesheet" href="css/index.css" />
<script src="js/index.js" charset="UTF-8"></script>
</head>
<body>
<video id="video" height="400px" width="533px" controls="controls">
<source src="video/Bad Apple.mp4"></source>
</video>
<canvas id="canvas" height="400px" width="533px" ></canvas>
<div class="console">
<div class="item">
耗时:<span id="useTimeEl">0</span>ms
帧数:<span id="FPSEl">0</span>
</div>
<div class="item">
<button id="playButton">播放</button>
</div>
<div class="item">
<input id="writeToConsole" type="checkbox"/>
<label for="writeToConsole">在Console中输出</label>
</div>
<div class="item">
<input id="pixelate" type="checkbox"/>
<label for="pixelate">像素化</label>
<input type="range" id="pixelateRange" value="10" min="1" max="100" step="1" style="width: 200px;">
</div>
<div class="item">
<input id="edge" type="checkbox"/>
<label for="edge">显示边缘</label>
</div>
<div class="item">
<input id="trace" type="checkbox"/>
<label for="trace">显示痕迹</label>
</div>
<div class="item">
<input id="original" type="radio" name="handleType"/>
<label for="original">原版</label>
<input id="color" type="radio" name="handleType" checked="checked"/>
<label for="color">彩色</label>
<input id="rainbow" type="radio" name="handleType"/>
<label for="rainbow">彩虹</label>
<input id="photo" type="radio" name="handleType"/>
<label for="photo">照片</label>
</div>
<div class="item">
上传照片:<input id="file" type="file" accept="image/*"/>
</div>
<div class="item">
请按F12打开控制台Console标签页观看视频!
</div>
<div class="item" style="color: #f00">
哔哩哔哩、微信、QQ等内置浏览器无法正常观看,请复制链接到其它浏览器中打开
</div>
<div class="item">
源码地址:<a href="https://github.com/1171736840/BadApple" target="_blank">GitHub</a>
</div>
<div class="item">
欢迎访问:<a href="https://www.xuyanwu.cn" target="_blank">我的博客</a>
</div>
</div>
</body>
</html>