-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·62 lines (61 loc) · 2.19 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>mans not hot</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/style.css">
<!-- Custom Fonts -->
<link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<script src="pixi.min.js"></script>
<script src="sound.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$(".btn1").click(function(){
$("#overlay-main").fadeOut(400);
});
$(".btn2").click(function(){
$("#overlay-main").fadeIn(1000);
});
});
</script>
</head>
<body>
<script src="mnh.js"></script>
<script src="audio.js"></script>
<section>
<div class="center">
<div id="sound-on" class="wrapper">
<a id="first" class="icons" onclick="mute(); frown();" href="javascript:void(0);"><i class="fa fa-volume-up"></i></a>
<div id="second" class="audio-text-options">Sound | On</div>
</div>
<div id="sound-off" class="wrapper">
<a id="first" class="icons" onclick="unmute()" href="javascript:void(0);"><i class="fa fa-volume-off"></i></a>
<div id="second" class="audio-text-options">Sound | Off</div>
</div>
<br/>
<div class="wrapper">
<a id="first" class="icons" href="https://www.twitter.com/kolapo_/" target="_blank"><i class="fa fa-twitter circle"></i></a>
<div id="second" class="designer-name">Designed by kolapo</div>
</div>
<br/>
<div class="wrapper">
<a id="first" class="icons" href="https://www.instagram.com/durustudios/" target="_blank"><i class="fa fa-instagram"></i></a>
<div id="second" class="artist-name">Illustrations by duru</div>
</div>
</div>
</section>
<section id="overlay-main">
<!-- <button class="btn1">Fade out</button>
<button class="btn2">Fade in</button>
-->
<div class="load">
<div class="spinner">
<div class="bubble-1"></div>
<div class="bubble-2"></div>
</div>
</div>
</section>
</body>
</html>