-
Notifications
You must be signed in to change notification settings - Fork 133
/
example.html
49 lines (45 loc) · 2.68 KB
/
example.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
<!DOCTYPE html>
<head>
<title>JuxtaposeJS</title>
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=0">
<link rel="stylesheet" href="juxtapose/css/juxtapose.css">
<!-- favicons -->
<link rel="apple-touch-icon" sizes="180x180" href="https://cdn.knightlab.com/libs/orangeline/latest/assets/favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" href="https://cdn.knightlab.com/libs/orangeline/latest/assets/favicons/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="https://cdn.knightlab.com/libs/orangeline/latest/assets/favicons/favicon-16x16.png" sizes="16x16">
<link rel="manifest" href="https://cdn.knightlab.com/libs/orangeline/latest/assets/favicons/manifest.json">
<link rel="mask-icon" href="https://cdn.knightlab.com/libs/orangeline/latest/assets/favicons/safari-pinned-tab.svg" color="#5bbad5">
<meta name="theme-color" content="#ffffff">
<!-- /favicons -->
<style>
.juxtapose {
max-width: 600px;
}
.jx-slider {
margin-top: 1em;
}
</style>
</head>
<body>
<div class="juxtapose">
<img src="https://placekitten.com/500/300" data-label="Cat" alt="A cat" />
<img src="https://placebear.com/500/300" data-label="Bear" alt="A bear" />
</div>
<div class="juxtapose">
<img class="left" src="https://online.wsj.com/media/LIONDOORA.jpg" data-label="2009" alt="Maidan square in 2009" data-credit="WSJ" />
<img class="right" src="https://online.wsj.com/media/LIONDOOR_2A.jpg" data-label="2014" alt="Maidan square in 2014" data-credit="" />
</div>
<div class="juxtapose" data-startingposition="25%" data-mode="vertical">
<img class="left" src="./images/Sochi_11April2005.jpg" data-label="April 2005" alt="Aerial view of Sochi in 2005" />
<img class="right" src="./images/Sochi_22Nov2013.jpg" data-label="Nov. 2013" alt="Aerial view of Sochi in 2013" />
</div>
<div class="juxtapose" data-startingposition="45%">
<img class="left" src="https://www.flickr.com/photos/gsfc/14305885885/" alt="A coronal mass ejection by Nasa" />
<img class="right" src="https://www.flickr.com/photos/gsfc/14302542611/" alt="flare of solar material by Nasa" />
</div>
<div class="juxtapose" data-startingposition="45%">
<img class="left" src="https://www.flickr.com/photos/gsfc/14931787037/in/photostream/" alt="Magnificent coronal mass ejection, by Nasa" />
<img class="right" src="https://www.flickr.com/photos/gsfc/14931787877/in/photostream/" alt="magnificent coronal mass ejection, by Nasas" />
</div>
<script src='juxtapose/js/juxtapose.js'></script>
</body>