-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathfullscreen-slider-demo.html
50 lines (49 loc) · 1.52 KB
/
fullscreen-slider-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
<!DOCTYPE html>
<html lang="en">
<head>
{{> head }}
</head>
<body>
<div class="slider fullscreen">
<ul class="slides">
<li>
<img
src="https://images.unsplash.com/photo-1464817739973-0128fe77aaa1?dpr=1&auto=compress,format&fit=crop&w=1199&h=799&q=80&cs=tinysrgb&crop="
/>
<!-- random image -->
<div class="caption center-align">
<h3>This is our big Tagline!</h3>
<h5 class="light grey-text text-lighten-3">
Here's our small slogan.
</h5>
</div>
</li>
<li>
<img
src="https://ununsplash.imgix.net/photo-1414849424631-8b18529a81ca?q=75&fm=jpg&s=0e993004a2f3704e8f2ad5469315ccb7"
/>
<!-- random image -->
<div class="caption left-align">
<h3>Left Aligned Caption</h3>
<h5 class="light grey-text text-lighten-3">
Here's our small slogan.
</h5>
</div>
</li>
<li>
<img
src="https://ununsplash.imgix.net/uploads/1413259835094dcdeb9d3/6e609595?q=75&fm=jpg&s=6a4fc66161293fc4a43a6ca6f073d1c5"
/>
<!-- random image -->
<div class="caption right-align">
<h3>Right Aligned Caption</h3>
<h5 class="light grey-text text-lighten-3">
Here's our small slogan.
</h5>
</div>
</li>
</ul>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>