-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmethod2.html
More file actions
38 lines (35 loc) · 763 Bytes
/
method2.html
File metadata and controls
38 lines (35 loc) · 763 Bytes
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
<!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"></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="method1.html">Method 1</a></p>
</div>
<script src="simpleslider.js"></script>
<script>
simpleslider('16:9', 4, "img/directory", "prefix");
</script>
</body>
</html>