-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (37 loc) · 980 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>pure-clock</title>
<link rel="stylesheet" href="src/pure-clock.css">
<style>
.decoration-lufei {
position: absolute;
width: 100px;
height: 200px;
right: 0px;
bottom: 0px;
background: url('src/doll-lufei.gif') no-repeat;
background-size: 100%;
animation: transtalteLoop 5s ease infinite;
}
@keyframes transtalteLoop {
0% {
right: 0px;
}
50% {
right: 50px;
}
100% {
right: 0px;
}
}
</style>
</head>
<body>
<div class="pure-clock-container" id="myPureClockCon"
style="transform: scale(0.6);"></div>
<div class="decoration-lufei"></div>
<script src="src/main.js"></script>
</body>
</html>