-
Notifications
You must be signed in to change notification settings - Fork 1
/
demo.html
30 lines (27 loc) · 1.05 KB
/
demo.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Use Code - Bodymovin progressively load on scroll</title>
<script src="demo/js/jquery-3.2.1.min.js"></script>
<script src="demo/js/bodymovin.js" type="text/javascript"></script>
<script src="bodymin-animation.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="demo/css/style.css" />
<link href="https://fonts.googleapis.com/css?family=Merriweather:400,700" rel="stylesheet">
</head>
<body>
<div class="item">
<p>First animation</p>
<div class="animation" src="demo/animations/test.json" animation-end=".animation-end-1"></div>
<div class="animation-end animation-end-1">
<p>Scroll to next animation</p>
</div>
</div>
<div class="item">
<p>Second animation</p>
<div class="animation" src="demo/animations/test.json"></div>
</div>
</body>
</html>