forked from NUKnightLab/juxtapose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.html
39 lines (38 loc) · 1.87 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
<!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">
<link rel="icon" type="image/x-icon" href="http://blueline.knightlab.com/assets/logos/favicon.ico" />
<style>
.juxtapose {
max-width: 600px;
}
.jx-slider {
margin-top: 1em;
}
</style>
</head>
<body>
<div class="juxtapose">
<img src="http://placekitten.com/500/300" data-label="Cat" alt="A cat" />
<img src="http://placebear.com/500/300" data-label="Bear" alt="A bear"/>
</div>
<div class="juxtapose">
<img class="left" src="http://online.wsj.com/media/LIONDOORA.jpg" data-label="2009" alt="Maidan square in 2009" data-credit="WSJ"/>
<img class="right" src="http://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>