-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·149 lines (138 loc) · 5.25 KB
/
index.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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>WD-40:: Art & Noise</title>
<link rel="stylesheet" href="css/style2.css">
<link type="text/css" href="css/css.css" rel="stylesheet">
<link type="text/css" href="css/text-46a96758-80b6-4dd8-aeb6-06f04020854a.css" rel="stylesheet">
<link type="text/css" href="css/text-9f699a50-5b89-9d22-583e-a31b90f5f356.css" rel="stylesheet">
<link type="text/css" href="css/text-d59196a7-ac90-42a1-80e0-1dbeba7680bf.css" rel="stylesheet">
<link type="text/css" href="css/text-272a719a-7832-4035-93d1-825d568a56f0.css" rel="stylesheet">
<link type="text/css" href="css/navigation-75845d01-c24a-468e-b46c-6693ea1f93ab.css" rel="stylesheet">
<link type="text/css" href="css/text-df8e3f05-7529-4659-beea-6742b07ceec5.css" rel="stylesheet">
<link type="text/css" href="css/text-8f83b05e-cca7-480e-b580-5a6054b461d0.css" rel="stylesheet">
<link type="text/css" href="css/text-9347dbb2-4a43-42dc-b06e-e29592079049.css" rel="stylesheet">
<!--[if IE]>
<meta http-equiv="Expires" content="Thu, 01 Dec 1994 16:00:00 GMT" />
<![endif]-->
<link type="text/css" href="css/layout.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Darker+Grotesque:300,400,500,600,700,800,900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<script src="https://unpkg.com/[email protected]/dist/ionicons.js"></script>
<link rel="stylesheet" href="https://cdn.rawgit.com/daneden/animate.css/v3.1.0/animate.min.css">
<script src="https://cdn.rawgit.com/matthieua/WOW/1.0.1/dist/wow.min.js"></script>
<body>
<a name="home"></a>
<div class="wrapper">
<div class="video-container">
<video playsinline autoplay muted loop id="bgvid">
<source src="image/videobg.mp4" type="video/mp4">
</video>
</div>
<div class="header">
<p> </p>
<a href="bio.html" title="CLick & enjoy">
<h2 style="font-size: 22px; color: #ffff00; font-family: Dosis,sans-serif;">Art & Noise</h2>
</a>
</div>
<div class="footer">
<div class="container">
<div class="info">
<div class="row">
<div class="col-md-1 wow fadeInUp" data-wow-delay="0.4s" id="media">
<ul>
<li>
<a class=" link" href="https://www.facebook.com/wd40noiseart/" target="_blank">
<img id="mce-21041" src="image/facebook_b.png" alt="Visit us on Facebook" width="28" height="28">
</a>
</li>
<li>
<a class=" link" href="https://www.instagram.com/wd40noise/" target="_blank">
<img id="mce-21041" src="image/instagram_b.png" alt="Visit us on Instagram" width="28" height="28">
</a>
</li>
<li>
<a class=" link" href="https://vimeo.com/wd40" target="_blank">
<img id="mce-21041" src="image/vimeo_b.png" alt="Visit us on Viemo" width="28" height="28">
</a>
</li>
<li>
<a class=" link" href="https://www.soundcloud.com" target="_blank">
<img id="mce-21438" src="image/soundcloud_b.png" alt="Visit us on Soundcloud" width="28" height="28">
</a>
</li>
</ul>
<br><br>
</div>
</div>
</div>
</div>
</div>
<div class="content">
<!--------------- vacio para rellenar --------------->
</div>
</div>
<script src="https://code.jquery.com/jquery-3.4.1.js"></script>
<script>
$("#toggle").click(function () {
$(this).toggleClass('on');
$("#resize").toggleClass("active");
});
$("#resize ul li a").click(function () {
$(this).toggleClass('on');
$("#resize").toggleClass("active");
});
$(".close-btn").click(function () {
$(this).toggleClass('on');
$("#resize").toggleClass("active");
});
$(function () {
$(document).scroll(function () {
var $nav = $(".nav");
$nav.toggleClass('scrolled', $(this).scrollTop() > $nav.height());
});
});
new WOW().init();
// Select all links with hashes
$('a[href*="#"]')
// Remove links that don't actually link to anything
.not('[href="#"]')
.not('[href="#0"]')
.click(function (event) {
// On-page links
if (
location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '')
&&
location.hostname == this.hostname
) {
// Figure out element to scroll to
var target = $(this.hash);
target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
// Does a scroll target exist?
if (target.length) {
// Only prevent default if animation is actually gonna happen
event.preventDefault();
$('html, body').animate({
scrollTop: target.offset().top
}, 1000, function () {
// Callback after animation
// Must change focus!
var $target = $(target);
$target.focus();
if ($target.is(":focus")) { // Checking if the target was focused
return false;
} else {
$target.attr('tabindex', '-1'); // Adding tabindex for elements not focusable
$target.focus(); // Set focus again
};
});
}
}
});
</script>
</body>
</html>