-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwallpaper.html
31 lines (28 loc) · 1.35 KB
/
wallpaper.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
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Demo</title>
<script src="js/vue.js"></script>
<script src="js/calendarData.js"></script>
<link href="css/wallpaper.css" type="text/css" rel="styleSheet" />
<link href="css/module/calender.css" type="text/css" rel="styleSheet" />
<link href="css/module/wallpaperImg.css" type="text/css" rel="styleSheet" />
<link href="css/module/digitalClock.css" type="text/css" rel="styleSheet" />
<link href="css/module/pointerClock.css" type="text/css" rel="styleSheet" />
<script src='js/module/wallpaperImg.js'></script>
<script src='js/module/digitalClock.js'></script>
<script src='js/module/calendar.js'></script>
<script src='js/module/pointerClock.js'></script>
</head>
<body>
<div id='app'>
<wp-wallpaper-img :date='date' :src='wallpaperSrc'></wp-wallpaper-img>
<wp-digital-clock @component-onmousedown='onMousedown' :date='date' :style='digitalClock'></wp-digital-clock>
<wp-calendar @component-onmousedown='onMousedown' :date='date' :style='calendar'></wp-calendar>
<wp-pointer-clock @component-onmousedown='onMousedown' :date='date' :style='pointerClock'></wp-pointer-clock>
</div>
<script src="js/wallpaper.js"></script>
</body>
</html>