-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
57 lines (44 loc) · 1.16 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
47
48
49
50
51
52
53
54
55
56
57
<html>
<head>
<title><title><%= htmlWebpackPlugin.options.title %></title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0,user-scalable=0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<style>
body {
font-family: 'Roboto';
font-weight: 500;
}
.button {
background-color: #efefef;
margin: 10px;
padding: 10px;
}
.red {
color: red;
}
.mb {
background-color: #efefef;
}
* {
transition: all 250ms;
}
/*.fade*/
.fade-enter-active,
.fade-leave-active {
transition: opacity ease 250ms;
}
/*.fade-enter-to,
.fade-leave {
opacity: 1;
}*/
.fade-enter, .fade-leave-to {
opacity: 0;
}
</style>
<!-- <script src="./dist/vendors.bundle.js"></script> -->
<!-- <script src="./dist/main.bundle.js"></script> -->
</head>
<body>
<div id="layout"><div data-hid="1"><div data-key="a" data-hid="2" class="red green" style="font-size: 24px;"><span>test a</span></div><div data-key="b" data-hid="3" class="red green" style="font-size: 24px;"><span>test b</span></div></div></div>
</body>
</html>