-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.html
80 lines (64 loc) · 2.27 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
<html>
<head>
<title>Your slider in a simple web page</title>
<style>
body {
background-color: #fff;
color: #000;
padding: 0;
margin: 0;
}
.container {
width: 1012px;
margin: auto;
padding-top: 1em;
}
.container .ism-slider {
margin-left: auto;
margin-right: auto;
}
</style>
<link rel="stylesheet" href="ism/css/my-slider.css" />
<script src="ism/js/ism-2.2.min.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-719XEYVS4E"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-719XEYVS4E');
</script>
</head>
<body>
<div class='container'>
<div class="ism-slider" data-transition_type="zoom" data-play_type="loop" data-image_fx="zoompan" id="my-slider">
<ol>
<li>
<img src="ism/image/slides/flower-729514_1280.jpg">
<div class="ism-caption ism-caption-0">My slide caption text</div>
<div class="ism-caption ism-caption-2" data-delay='500'>My slide caption text</div>
</li>
<li>
<img src="ism/image/slides/beautiful-701678_1280.jpg">
<div class="ism-caption ism-caption-0">My slide caption text</div>
</li>
<li>
<img src="ism/image/slides/summer-192179_1280.jpg">
<div class="ism-caption ism-caption-0">My slide caption text</div>
</li>
</ol>
</div>
<p class="ism-badge" id="my-slider-ism-badge"><a class="ism-link" href="http://imageslidermaker.com"
rel="nofollow">generated with ISM</a></p>
<section>
<h1>Your slider in a simple web page</h1>
<p>This is a working example of your slider.</p>
<p>To get your slider working in your web page add <em>my-slider.css</em>, <em>ism-2.2.min.js</em> and the slide
images to your project directory and paste the markup into your HTML.</p>
<p>Please see README.txt for more detailed instructions.</p>
<p>* If your slider is not displayed correctly, please first make sure you have fully extracted the contents of
the zip file.</p>
</section>
</div>
</body>
</html>