-
-
Notifications
You must be signed in to change notification settings - Fork 214
/
Copy pathindex.html
38 lines (30 loc) · 1.16 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
<!DOCTYPE html>
<html lang="en">
<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>jQuery Example</title>
<!-- Demo Styles -->
<link href="./style.css" rel="stylesheet" />
<!-- Jarallax CSS -->
<link href="https://cdn.jsdelivr.net/npm/jarallax@2/dist/jarallax.min.css" rel="stylesheet" />
</head>
<body>
<div class="section"><h1>jQuery Example</h1></div>
<div class="jarallax">
<img class="jarallax-img" src="https://jarallax.nkdev.info/images/image1.jpg" alt="" />
</div>
<div class="jarallax" data-video-src="https://youtu.be/mru3Q5m4lkY"></div>
<div class="section"></div>
<!-- jQuery -->
<script src="https://cdn.jsdelivr.net/npm/jquery"></script>
<!-- Jarallax JS -->
<script src="https://cdn.jsdelivr.net/npm/jarallax@2/dist/jarallax.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/jarallax@2/dist/jarallax-video.min.js"></script>
<!-- Init Jarallax -->
<script type="text/javascript">
$(".jarallax").jarallax();
</script>
</body>
</html>