-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmethod1.html
43 lines (40 loc) · 986 Bytes
/
method1.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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Simple Slider by JaL Productions</title>
<link rel="stylesheet" type="text/css" href="simpleslider.css"/>
<style>
body {
margin: 0;
padding: 0;
}
.centre {
max-width: 1000px;
margin: 0 auto;
}
</style>
</head>
<body>
<div class="centre">
<div id="simpleslider">
<div id="ss__wrapper">
<img src="img/image1.jpg" alt="An orange image"/>
<img src="img/image2.jpg" alt="A larger image with a different proportion to ss"/>
<img src="img/image3.jpg" alt="A portrait image"/>
<img src="img/image4.jpg" alt="A square image"/>
</div>
<div id="ss__controls">
<div id="ss__prev"><div id="ss__prevChev"></div></div>
<div id="ss__next"><div id="ss__nextChev"></div></div>
<div id="ss__dots"></div>
</div>
</div>
<p><a href="method2.html">Method 2</a></p>
</div>
<script src="simpleslider.js"></script>
<script>
simpleslider('16:9');
</script>
</body>
</html>