-
Notifications
You must be signed in to change notification settings - Fork 24
/
index.html
183 lines (143 loc) · 5.72 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Excolo Slider - yet another jQuery slider/caroussel plugin</title>
<link href="css/reset.css" rel="stylesheet" />
<link href="css/style.css" rel="stylesheet" />
<noscript>
<link rel="stylesheet" href="/css/mobile.min.css" />
</noscript>
<script src="js/jquery-1.9.1.min.js"></script>
<script src="js/jquery.excoloSlider.js"></script>
<link href="css/jquery.excoloSlider.css" rel="stylesheet" />
<link href="http://alexgorbatchev.com/pub/sh/current/styles/shThemeDefault.css" rel="stylesheet" type="text/css" />
<script src="http://alexgorbatchev.com/pub/sh/current/scripts/shCore.js" type="text/javascript"></script>
<script src="http://alexgorbatchev.com/pub/sh/current/scripts/shAutoloader.js" type="text/javascript"></script>
<script>
// Settings for Adaptive.js
var ADAPT_CONFIG = {
path: 'css/',
dynamic: true,
range: [
'0px to 760px = mobile.min.css',
'760px to 980px = 720.min.css',
'980px = 960.min.css'
]
};
</script>
<script src="js/adapt.min.js"></script>
<script type="text/javascript">
SyntaxHighlighter.config.tagName = "code";
</script>
<script>
$(function () {
$("#sliderA").excoloSlider();
$("#sliderB").excoloSlider();
});
</script>
</head>
<body>
<header>
<div class="container_12">
<div class="grid_2 suffix_10"><a href="http://excolo.github.io/Excolo-Slider/" title="Click here to go to the GitHub page for this plugin"><img alt="Slider logo" src="images/logo.png" /></a></div>
</div>
</header>
<div class="h20"></div>
<div class="container_12">
<div class="grid_8">
<div id="sliderA" class="slider">
<img src="images/image1.jpg" data-plugin-slide-caption="This is a <b>caption</b> in slide 1. <a href='http://fursik.deviantart.com/' target='_blank' title='Link to the photographer of the photos used in examples'>Photo by Fursik</a>" />
<img src="images/image2.jpg" />
<img src="images/image3.jpg" />
<div style="background-color: #ff7500" data-plugin-slide-caption="This is the caption of a <b>DIV</b> slide.">
<h2>A DIV slide</h2><img style="width:60%;border:1px solid #fff;background-color: #fff;float:right;margin: 10px;padding: 10px;" src="images/image4.jpg" /></div>
<img src="images/image5.jpg" />
<img src="images/image6.jpg" />
<img src="images/image7.jpg" />
<img src="images/image8.jpg" />
</div>
<div class="h10"></div>
</div>
<div class="grid_4">
<h2>Default Slider</h2>
<p>This slider is setup with default settings.</p>
<ul>
<li>Auto Play is on</li>
<li>Auto Size is on</li>
<li>Repeat is on</li>
<li>Prev/next navigation buttons are on</li>
<li>Prev/next navigation autohide is on</li>
<li>Pagination is on</li>
<li>Touch navigation is on</li>
<li>Mouse navigation is on</li>
<li>Pause on hover is on</li>
<li>CSS3 transitions is on</li>
<li>Delay is 0ms</li>
<li>Slide interval is 3000ms (3s)</li>
</ul>
<div class="h10"></div>
<h3>Setup:</h3>
<code class="brush: js; toolbar: false;">
$(function () {
$("#sliderA").excoloSlider();
});
</code>
</div>
<div class="h20"></div>
</div>
<div class="h20"></div>
<div class="container_12">
<div class="grid_8">
<div id="sliderB" class="slider">
<div style="background-color: #ff7500"><h2>First slide</h2></div>
<div style="background-color: #b6ff00"><h2>Second slide</h2></div>
<div style="background-color: #00ff05"><h2>Third slide</h2></div>
<div style="background-color: #00d8ff"><h2>Fourth slide</h2></div>
<div style="background-color: #8000ff"><h2>Fifth slide</h2></div>
<div style="background-color: #ff008d"><h2>Sixth slide</h2></div>
</div>
<div class="h10"></div>
</div>
<div class="grid_4">
<h2>Default Slider with div slides</h2>
<p>This slider is setup with default settings, but using DIV elements for slides instead of IMG elements.</p>
<ul>
<li>Auto Play is on</li>
<li>Auto Size is on</li>
<li>Repeat is on</li>
<li>Prev/next navigation buttons are on</li>
<li>Prev/next navigation autohide is on</li>
<li>Touch navigation is on</li>
<li>Mouse navigation is on</li>
<li>Pause on hover is on</li>
<li>CSS3 transitions is on</li>
<li>Delay is 0ms</li>
<li>Slide interval is 3000ms (3s)</li>
</ul>
<div class="h10"></div>
<h3>Setup:</h3>
<code class="brush: js; toolbar: false;">
$(function () {
$("#sliderB").excoloSlider();
});
</code>
</div>
<div class="h20"></div>
</div>
<div class="h20"></div>
<div class="container_12">
<div class="grid_12">
<hr />
<p>The beautiful photos used in these examples were used with permission from the photographer <a href="http://fursik.deviantart.com/" target='_blank' title="Link to the photographer of the photos used in examples">Piotr Furs</a>.<br />
These photos, and more, are available at his <a href="http://fursik.deviantart.com/" target='_blank' title="Link to the photographer of the photos used in examples">deviantArt profile, Fursik</a>.</p>
</div>
<div class="h20"></div>
</div>
<script type="text/javascript">
SyntaxHighlighter.autoloader(
'js jscript javascript http://alexgorbatchev.com/pub/sh/current/scripts/shBrushJScript.js'
);
SyntaxHighlighter.all();
</script>
</body>
</html>