This repository was archived by the owner on Oct 5, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.html
95 lines (85 loc) · 2.38 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>jQuery simpleSlider Demo</title>
<link rel="stylesheet" href="jQuery.simpleSlider.css" media="screen" />
<style media="screen">
* {
margin: 0;
padding: 0;
}
body {
color: #333;
background: #fafbfc;
font: normal 200 14px/1 "Helvetica Neue", Helvetica;
}
aside {
float: left;
margin: 20px;
}
.clearfix:after {
content: ".";
height: 0;
display: block;
visibility: hidden;
clear: both;
}
.clearfix {min-height:1%;}
* html .clearfix {height:1%;}
</style>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="jQuery.simpleSlider.min.js"></script>
<script>
jQuery(function() {
jQuery('.myslider').simpleSlider();
});
</script>
</head>
<body>
<section id="main">
<aside class="myslider clearfix">
<figure>
<img src="images/Iridexel3_1.jpg" width="640" height="960" alt="Iridexel 3 1" />
<figcaption>Iridexel 3 1</figcaption>
</figure>
<figure>
<img src="images/Iridexel3_2.jpg" width="640" height="960" alt="Iridexel 3 2" />
<figcaption>Iridexel 3 2</figcaption>
</figure>
<figure>
<img src="images/Iridexel3_3.jpg" width="640" height="960" alt="Iridexel 3 3" />
<figcaption>Iridexel 3 3</figcaption>
</figure>
</aside>
<aside class="myslider clearfix">
<figure>
<img src="images/squares1.jpg" width="640" height="960" alt="Squares 1" />
<figcaption>Squares 1</figcaption>
</figure>
<figure>
<img src="images/squares2.jpg" width="640" height="960" alt="Squares 2" />
<figcaption>Squares 2</figcaption>
</figure>
<figure>
<img src="images/squares3.jpg" width="640" height="960" alt="Squares 3" />
<figcaption>Squares 3</figcaption>
</figure>
</aside>
<aside class="myslider clearfix">
<figure>
<img src="images/underwater2.jpg" width="640" height="960" alt="Underwater 2" />
<figcaption>Underwater 2</figcaption>
</figure>
<figure>
<img src="images/Water Drops.jpg" width="640" height="960" alt="Water Drops" />
<figcaption>Water Drops</figcaption>
</figure>
<figure>
<img src="images/waterdrops.jpg" width="640" height="960" alt="Waterdrops" />
<figcaption>Waterdrops</figcaption>
</figure>
</aside>
</section>
</body>
</html>