forked from yuanxinfeng/example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclock.html
More file actions
26 lines (26 loc) · 727 Bytes
/
clock.html
File metadata and controls
26 lines (26 loc) · 727 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
<!--
* @Description: 罗盘时钟
* @Author: Jasper
* @Github: https://github.com/yuanxinfeng
* @Date: 2019-11-07 15:41:09
* @LastEditors: Jasper
* @LastEditTime: 2019-11-08 10:25:41
-->
<!DOCTYPE html>
<html lang="z-cn">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>罗盘时钟</title>
<link rel="stylesheet" href="./clock.css" />
</head>
<body>
<div class="fullScreen">
<button onclick="toggleFullScreen()">全屏</button>
</div>
<div id="clock"></div>
</body>
<script src="./clock.js"></script>
<script src="./fullScreen.js"></script>
</html>