-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex_media.html
59 lines (55 loc) · 1.37 KB
/
index_media.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
</head>
<body>
<figure class="figure">
<a href="./img/1.jpg" class="image-link ">
<img class="photoi" src="./img/1.jpg" alt="">
</a>
</figure>
<figure class="figure">
<a href="./img/3.jpg" class="image-link ">
<img class="photoi" src="./img/3.jpg" alt="">
</a>
</figure>
<figure class="figure">
<a href="./img/12.jpg" class="image-link ">
<img class="photoi" src="./img/12.jpg" alt="">
</a>
</figure>
<figure class="figure">
<a href="./img/11.jpg" class="image-link ">
<img class="photoi" src="./img/11.jpg" alt="">
</a>
</figure>
<figure class="figure">
<a href="./img/14.jpg" class="image-link ">
<img class="photoi" src="./img/14.jpg" alt="">
</a>
</figure>
<figure class="figure">
<a href="./img/8.jpg" class="image-link ">
<img class="photoi" src="./img/8.jpg" alt="">
</a>
</figure>
</body>
<!--Script-->
<script>
/* Initialise Viewbox.js */
$(function () {
$('.image-link').viewbox();
});
/* Gallery Items Animation */
const figurepos = $(".figure").offset().top / 2;
$(document).on("scroll", function () {
if ($(document).scrollTop() > figurepos) {
$(".figure").addClass("figure-active");
}
else {
$(".figure").removeClass("figure-active");
}
});
</script>
</html>