-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·36 lines (36 loc) · 1.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>koalazily - example</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
.container {
display: flex;
flex-direction: column;
align-items: center;
}
img {
margin-bottom: 5rem;
}
</style>
</head>
<body>
<div class="container">
<img data-koalazily="https://source.unsplash.com/300x200/?house/1" width="300" height="200" alt="" />
<img data-koalazily="https://source.unsplash.com/300x200/?house/2" width="300" height="200" alt="" />
<img data-koalazily="https://source.unsplash.com/300x200/?house/3" width="300" height="200" alt="" />
<img data-koalazily="https://source.unsplash.com/300x200/?house/4" width="300" height="200" alt="" />
<img data-koalazily="https://source.unsplash.com/300x200/?house/5" width="300" height="200" alt="" />
</div>
<script src="../dist/koalazily.umd.js"></script>
<script>
koalazily({
offset: 200,
onLoad: function(image) {
console.log(image.src + ' loaded.');
},
useLoader: true,
});
</script>
</body>
</html>