-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogo_droppay.html
executable file
·46 lines (42 loc) · 1001 Bytes
/
logo_droppay.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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<style>
body, html{
background-color:#EF7018;
margin: 0px;
height: 100%;
overflow-x: hidden;
overflow-y: auto;
}
#bodymovin{
background-color:#EF7018;
width:100%;
height:100%;
/*width:800px;
height:500px;*/
display:block;
overflow: hidden;
transform: translate3d(0,0,0);
margin: auto;
opacity: 1;
}
</style>
<script src="scripts/bodymovin.min.js"></script>
</head>
<body>
<div id="bodymovin"></div>
<script>
bodymovin.loadAnimation({
container: document.getElementById('bodymovin'),
renderer: 'svg',
loop: false,
autoplay: true,
rendererSettings: {
progressiveLoad:false
},
path: 'logo_droppay.json'
});
</script>
</body>
</html>