-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo.html
executable file
·71 lines (65 loc) · 3.49 KB
/
demo.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
<!DOCTYPE html>
<html>
<head>
<title>Stackd.js Slider Demo</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Lato:400,700">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<link rel="stylesheet" href="./demo.css">
<script src="//code.jquery.com/jquery.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
</head>
<body>
<div class="container">
<div class="col-sm-8 col-sm-offset-2 text-center">
<h1>Stackd.js Slider Demo</h1>
<span>Download on <a href="https://github.com/johnathanmiller/stackd"><i class="fa fa-github"></i> GitHub</a> © 2017 by <a href="https://johnathanmiller.com" target="new">Johnathan Miller</a>
<ul id="stackd">
<li>
<div class="stackd-slide" style="background: url('https://images.unsplash.com/photo-1489924034176-2e678c29d4c6?dpr=2&auto=format&fit=crop&w=1500&h=1000&q=80&cs=tinysrgb&crop=&bg=') no-repeat center; background-size: cover; position: relative;">
<h3>Slide 1</h3>
<a href="https://unsplash.com/?photo=zc4MEZMdXhc">Wolf in Snow</a>
</div>
</li>
<li>
<div class="stackd-slide" style="background: url('https://images.unsplash.com/photo-1438030332662-97751637dcd3?dpr=2&auto=format&fit=crop&w=1500&h=1000&q=80&cs=tinysrgb&crop=&bg=') no-repeat center; background-size: cover; position: relative;">
<h3>Slide 2</h3>
<a href="https://unsplash.com/?photo=MdFBcEMBytc">Baba Sheep</a>
</div>
</li>
<li>
<div class="stackd-slide" style="background: url('https://images.unsplash.com/photo-1489960614773-0ff4c0b837e4?dpr=2&auto=format&fit=crop&w=1500&h=805&q=80&cs=tinysrgb&crop=&bg=') no-repeat center; background-size: cover; position: relative;">
<h3>Slide 3</h3>
<a href="https://unsplash.com/?photo=pULttj3sqEY">Chameleon</a>
</div>
</li>
<li>
<div class="stackd-slide" style="background: url('https://images.unsplash.com/photo-1487241281672-301e0f542588?dpr=2&auto=format&fit=crop&w=1500&h=1000&q=80&cs=tinysrgb&crop=&bg=') no-repeat center; background-size: cover; position: relative;">
<h3>Slide 4</h3>
<a href="https://unsplash.com/?photo=DCtwjzQ9uVE">Foxes of Zao, Japan</a>
</div>
</li>
<li>
<div class="stackd-slide" style="background: url('https://images.unsplash.com/photo-1491328480217-db46cf0876c5?dpr=2&auto=format&fit=crop&w=1500&h=999&q=80&cs=tinysrgb&crop=&bg=') no-repeat center; background-size: cover; position: relative;">
<h3>Slide 5</h3>
<a href="https://unsplash.com/?photo=n6I2GT_Pij4">Alert Owl</a>
</div>
</li>
</ul>
</div>
</div>
<script src="./stackd.min.js"></script>
<script>
let stackd = new Stackd({
id: 'stackd',
offset: 15,
keyboard: true,
previousButtonContent: '<i class="fa fa-fw fa-long-arrow-left"></i>',
nextButtonContent: '<i class="fa fa-fw fa-long-arrow-right"></i>'
});
stackd.init();
</script>
</body>
</html>