forked from zhangyunjian/clock
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (23 loc) · 781 Bytes
/
Copy pathindex.html
File metadata and controls
23 lines (23 loc) · 781 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,user-scalable=0,initial-scale=0.5,maximum-scale=0.5">
<title>Canvas Clock</title>
<link rel="stylesheet" href="clock.css">
<script src="team.js"></script>
</head>
<body>
<div class="wrapper">
<canvas id="canvas" width="600" height="600">
不支持canvas
</canvas>
<canvas id="bg" width="600" height="1000"></canvas>
<marquee id="notice" behavior="alternate" direction="up" onMouseOut="this.start()" onMouseOver="this.stop()" scrollamount="38" scrolldelay="2000" ></marquee>
<div id="logo">
<img src="oumiga.jpg" width="100" height="100">
</div>
</div>
<script src="clock.js"></script>
</body>
</html>