-
Notifications
You must be signed in to change notification settings - Fork 133
Expand file tree
/
Copy pathexample_errors.html
More file actions
32 lines (28 loc) · 890 Bytes
/
example_errors.html
File metadata and controls
32 lines (28 loc) · 890 Bytes
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
<!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>
<img src="google.com" alt="">
<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>
<h1>with errors</h1>
<div class="juxtapose">
<img src="http://google.com" data-label="Cat" alt="A cat" />
<img src="http://placebear.com/500/300" data-label="Bear" alt="A bear"/>
</div>
<script src='../juxtapose/js/juxtapose.js'></script>
</body>