-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex5.html
133 lines (133 loc) · 4.8 KB
/
index5.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>nomadfervor | Page 5</title>
<meta
name="description"
content="A slideshow that showcases Indonesia's nature awesomeness."
/>
<meta name="author" content="nomadkode" />
<link rel="shortcut icon" href="favicon.ico" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<script>
document.documentElement.className = 'js';
var supportsCssVars = function () {
var e,
t = document.createElement('style');
return (
(t.innerHTML = 'root: { --tmp-var: bold; }'),
document.head.appendChild(t),
(e = !!(
window.CSS &&
window.CSS.supports &&
window.CSS.supports('font-weight', 'var(--tmp-var)')
)),
t.parentNode.removeChild(t),
e
);
};
supportsCssVars() ||
alert(
'Please view this demo in a modern browser that supports CSS Variables.'
);
</script>
</head>
<body class="demo-5 loading">
<svg class="hidden">
<symbol id="icon-github" viewBox="0 0 32.6 31.8">
<title>github</title>
<path
d="M16.3,0C7.3,0,0,7.3,0,16.3c0,7.2,4.7,13.3,11.1,15.5c0.8,0.1,1.1-0.4,1.1-0.8c0-0.4,0-1.4,0-2.8c-4.5,1-5.5-2.2-5.5-2.2c-0.7-1.9-1.8-2.4-1.8-2.4c-1.5-1,0.1-1,0.1-1c1.6,0.1,2.5,1.7,2.5,1.7c1.5,2.5,3.8,1.8,4.7,1.4c0.1-1.1,0.6-1.8,1-2.2c-3.6-0.4-7.4-1.8-7.4-8.1c0-1.8,0.6-3.2,1.7-4.4C7.4,10.7,6.8,9,7.7,6.8c0,0,1.4-0.4,4.5,1.7c1.3-0.4,2.7-0.5,4.1-0.5c1.4,0,2.8,0.2,4.1,0.5c3.1-2.1,4.5-1.7,4.5-1.7c0.9,2.2,0.3,3.9,0.2,4.3c1,1.1,1.7,2.6,1.7,4.4c0,6.3-3.8,7.6-7.4,8c0.6,0.5,1.1,1.5,1.1,3c0,2.2,0,3.9,0,4.5c0,0.4,0.3,0.9,1.1,0.8c6.5-2.2,11.1-8.3,11.1-15.5C32.6,7.3,25.3,0,16.3,0z"
/>
</symbol>
</svg>
<main>
<div class="content content--fixed">
<header class="header">
<h1 class="header__title">nomadfervor</h1>
</header>
<a
class="github"
href="https://github.com/nomadkode/nomadfervor/"
title="Find this project on GitHub"
><svg class="icon icon--github">
<use xlink:href="#icon-github"></use></svg
></a>
<nav class="demos">
<svg class="icon icon--keyboard">
<use xlink:href="#icon-keyboard"></use>
</svg>
<a class="demo" href="index.html"><span>Page 1</span></a>
<a class="demo" href="index2.html"><span>Page 2</span></a>
<a class="demo" href="index3.html"><span>Page 3</span></a>
<a class="demo" href="index4.html"><span>Page 4</span></a>
<a class="demo demo--current" href="index5.html"
><span>Page 5</span></a
>
</nav>
</div>
<div class="slideshow">
<div class="slides slides--images">
<div class="slide slide--current">
<div
class="slide__img"
style="background-image: url(img/demo5/travel.webp)"
></div>
</div>
<div class="slide">
<div
class="slide__img"
style="background-image: url(img/demo5/voyage.webp)"
></div>
</div>
<div class="slide">
<div
class="slide__img"
style="background-image: url(img/demo5/wander.webp)"
></div>
</div>
<div class="slide">
<div
class="slide__img"
style="background-image: url(img/demo5/journey.webp)"
></div>
</div>
<div class="slide">
<div
class="slide__img"
style="background-image: url(img/demo5/ramset.webp)"
></div>
</div>
</div>
<div class="slides slides--titles">
<div class="slide slide--current">
<h2 class="slide__title">Travel</h2>
</div>
<div class="slide">
<h2 class="slide__title">Voyage</h2>
</div>
<div class="slide">
<h2 class="slide__title">Wander</h2>
</div>
<div class="slide">
<h2 class="slide__title">Journey</h2>
</div>
<div class="slide">
<h2 class="slide__title">Nomad</h2>
</div>
</div>
<nav class="slidenav">
<button class="slidenav__item slidenav__item--prev">Prev</button>
<span>/</span>
<button class="slidenav__item slidenav__item--next">Next</button>
</nav>
</div>
</main>
<script src="js/demo.js"></script>
<script src="js/imagesloaded.pkgd.min.js"></script>
<script src="js/anime.min.js"></script>
<script src="js/demo5.js"></script>
</body>
</html>