-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (34 loc) · 1.22 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
39
40
41
42
43
44
45
<!DOCTYPE html>
<html>
<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>js-zoomable examples</title>
</head>
<body>
<h2>Extended Elements</h2>
<h3><p is="zoomable-image"></h3>
<ul>
<li><a href="image.html">Single image (bundled)</a></li>
<li><a href="image-unbundled.html">Single image (unbundled)</a></li>
<li><a href="image-multi.html">Multiple images</a></li>
</ul>
<h3><ul is="zoomable-image-carousel"></h3>
<ul>
<li><a href="carousel.html">Image carousel (bundled)</a></li>
<li><a href="carousel-unbundled.html">Image carousel (unbundled)</a></li>
</ul>
<h2>Custom Elements</h2>
<h3><zoomage-image-custom></h3>
<ul>
<li><a href="image-custom.html">Single image (bundled)</a></li>
<li><a href="image-custom-unbundled.html">Single image (unbundled)</a></li>
</ul>
<h3><zoomage-image-carousel-custom></h3>
<ul>
<li><a href="carousel-custom.html">Image carousel (bundled)</a></li>
<li><a href="carousel-custom-unbundled.html">Image carousel (unbundled)</a></li>
</ul>
</body>
</html>