|
1 | 1 | <!DOCTYPE HTML>
|
2 |
| -<!-- |
3 |
| -/* |
4 |
| - * jQuery Image Gallery Plugin Demo |
5 |
| - * https://github.com/blueimp/jQuery-Image-Gallery |
6 |
| - * |
7 |
| - * Copyright 2011, Sebastian Tschan |
8 |
| - * https://blueimp.net |
9 |
| - * |
10 |
| - * Licensed under the MIT license: |
11 |
| - * http://www.opensource.org/licenses/MIT |
12 |
| - */ |
13 |
| ---> |
14 |
| -<html lang="en"> |
15 |
| -<head> |
16 |
| -<!--[if IE]> |
17 |
| -<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> |
18 |
| -<![endif]--> |
19 |
| -<meta charset="utf-8"> |
20 |
| -<title>jQuery Image Gallery Demo</title> |
21 |
| -<meta name="description" content="jQuery Image Gallery displays images with the touch-enabled, responsive and customizable blueimp Gallery carousel in the dialog component of jQuery UI. It features swipe, mouse and keyboard navigation, transition effects and on-demand content loading and can be extended to display additional content types."> |
22 |
| -<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
23 |
| -<link rel="stylesheet" href="//ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/south-street/jquery-ui.css" id="theme"> |
24 |
| -<link rel="stylesheet" href="//blueimp.github.io/Gallery/css/blueimp-gallery.min.css"> |
25 |
| -<link rel="stylesheet" href="css/demo.css"> |
26 |
| -</head> |
27 |
| -<body> |
28 |
| -<ul class="navigation"> |
29 |
| - <li><a href="https://github.com/blueimp/jQuery-Image-Gallery/tags">Download</a></li> |
30 |
| - <li><a href="https://github.com/blueimp/jQuery-Image-Gallery">Source Code</a></li> |
31 |
| - <li><a href="https://github.com/blueimp/jQuery-Image-Gallery/blob/master/README.md">Documentation</a></li> |
32 |
| - <li><a href="https://blueimp.net">© Sebastian Tschan</a></li> |
33 |
| -</ul> |
34 |
| -<h1>jQuery Image Gallery Demo</h1> |
35 |
| -<blockquote> |
36 |
| - <p>jQuery Image Gallery displays images with the touch-enabled, responsive and customizable <a href="https://blueimp.github.io/Gallery/">blueimp Gallery</a> carousel in the dialog component of <a href="https://jqueryui.com/">jQuery UI</a>.<br>It features swipe, mouse and keyboard navigation, transition effects and on-demand content loading and can be extended to display additional content types.</p> |
37 |
| -</blockquote> |
38 |
| -<br> |
39 |
| -<form> |
40 |
| - <button type="button" id="slideshow-button">Slideshow</button> |
41 |
| - <select id="effect-switcher"> |
42 |
| - <option>blind</option> |
43 |
| - <option>clip</option> |
44 |
| - <option>drop</option> |
45 |
| - <option selected>fade</option> |
46 |
| - <option>fold</option> |
47 |
| - <option>puff</option> |
48 |
| - <option>slide</option> |
49 |
| - <option>scale</option> |
50 |
| - </select> |
51 |
| - <select id="theme-switcher"> |
52 |
| - <option value="base">Base</option> |
53 |
| - <option value="black-tie">Black Tie</option> |
54 |
| - <option value="blitzer">Blitzer</option> |
55 |
| - <option value="cupertino">Cupertino</option> |
56 |
| - <option value="dark-hive">Dark Hive</option> |
57 |
| - <option value="dot-luv">Dot Luv</option> |
58 |
| - <option value="eggplant">Eggplant</option> |
59 |
| - <option value="excite-bike">Excite Bike</option> |
60 |
| - <option value="flick">Flick</option> |
61 |
| - <option value="hot-sneaks">Hot sneaks</option> |
62 |
| - <option value="humanity">Humanity</option> |
63 |
| - <option value="le-frog">Le Frog</option> |
64 |
| - <option value="mint-choc">Mint Choc</option> |
65 |
| - <option value="overcast">Overcast</option> |
66 |
| - <option value="pepper-grinder">Pepper Grinder</option> |
67 |
| - <option value="redmond">Redmond</option> |
68 |
| - <option value="smoothness">Smoothness</option> |
69 |
| - <option value="south-street" selected>South Street</option> |
70 |
| - <option value="start">Start</option> |
71 |
| - <option value="sunny">Sunny</option> |
72 |
| - <option value="swanky-purse">Swanky Purse</option> |
73 |
| - <option value="trontastic">Trontastic</option> |
74 |
| - <option value="ui-darkness">UI Darkness</option> |
75 |
| - <option value="ui-lightness">UI Lightness</option> |
76 |
| - <option value="vader">Vader</option> |
77 |
| - </select> |
78 |
| -</form> |
79 |
| -<br> |
80 |
| -<!-- The container for the list of example images --> |
81 |
| -<div id="links"></div> |
82 |
| -<!-- The dialog widget --> |
83 |
| -<div id="blueimp-gallery-dialog" data-show="fade" data-hide="fade"> |
84 |
| - <!-- The Gallery widget --> |
85 |
| - <div class="blueimp-gallery blueimp-gallery-carousel blueimp-gallery-controls"> |
86 |
| - <div class="slides"></div> |
87 |
| - <a class="prev">‹</a> |
88 |
| - <a class="next">›</a> |
89 |
| - <a class="play-pause"></a> |
90 |
| - </div> |
91 |
| -</div> |
92 |
| -<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> |
93 |
| -<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script> |
94 |
| -<script src="//blueimp.github.io/Gallery/js/jquery.blueimp-gallery.min.js"></script> |
95 |
| -<script src="js/jquery.image-gallery.js"></script> |
96 |
| -<script src="js/demo.js"></script> |
97 |
| -</body> |
98 |
| -</html> |
| 2 | +<title>Gallery redirect</title> |
| 3 | +<meta http-equiv="refresh" content="0; url=https://blueimp.github.io/Gallery/"> |
0 commit comments