-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (45 loc) · 1.05 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
<html>
<head>
<title>Getting Started</title>
<style>
.some{
height: 50px;
border: 1px solid black;
width: 0px;
}
.button{
width: 50px;
height: 50px;
border-radius: 50%;
background-color: aquamarine;
display: flex;
justify-content: center;
align-content: center;
vertical-align: middle;
line-height: 40px;
margin-top: 30px;
cursor: pointer;
}
.button-list{
position: absolute;
right: 20px;
top: 200px;
}
.all-time{
position: absolute;
right: 20px;
top: 20px;
font-weight:bold;
font-size: 24px;
}
</style>
</head>
<body>
<div id="vm">
<div v-text="message"></div>
</div>
<script src="https://cdn.bootcss.com/vue/2.5.17-beta.0/vue.js"></script>
<script src="./zcoil.js"></script>
<script src="./test.js"></script>
</body>
</html>