forked from High5Software/beach.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (58 loc) · 1.71 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
58
59
60
61
62
63
64
65
<html>
<head>
<meta http-equiv="cache-control" content="max-age=0" />
<meta http-equiv="cache-control" content="no-store" />
<meta http-equiv="expires" content="-1" />
<meta http-equiv="expires" content="Tue, 01 Jan 1980 1:00:00 GMT" />
<meta http-equiv="pragma" content="no-cache" />
<link rel="stylesheet" href="css/beach.styles.css"/>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" />
<script type="text/javascript" src="js/beach.core.js"></script>
<script type="text/javascript" src="js/beach.elements.js"></script>
<script type="text/javascript" src="models/model.js"></script>
<style type="text/css">
x-nest-fancy-button {
border-radius:8px;
float:left;
padding:15px;
box-sizing:border-box;
-webkit-box-shadow: 0px 2px 2px 0px #C7CBD3;
-moz-box-shadow: 0px 2px 2px 0px #C7CBD3;
box-shadow: 0px 2px 2px 0px #C7CBD3;
background-image:linear-gradient(white, #eff0f2);
cursor:pointer;
margin:15px;
margin-left:0px;
}
x-nest-fancy-button-icon {
color : #00cafc;
position:relative;
top:2px;
}
@keyframes spin {
from {
transform:rotate(0deg);
}
to {
transform:rotate(360deg);
}
}
.rotate {
animation-name: spin;
animation-duration: 5000ms;
animation-iteration-count: infinite;
animation-timing-function: linear;
}
</style>
</head>
<body>
<div id="nest-container" data-nest="home">
</div>
</body>
<script type="text/javascript">
//you can also activate programmatically
// document.addEventListener("DOMContentLoaded", function(event) {
// document.getElementById('nest-container').nest(model.home);
// });
</script>
</html>