-
Notifications
You must be signed in to change notification settings - Fork 12
/
index.html
169 lines (151 loc) · 4 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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<!DOCTYPE html>
<html>
<head>
<title>The Long Drive</title>
<!-- <link rel = "stylesheet" type = "text/css" href = "css/normalise.css"> -->
<link rel = "stylesheet" type = "text/css" href = "css/main.css">
<link rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Lobster">
<script
src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous">
</script>
<style>
/* The Modal (background) */
.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 99999999; /* Sit on top */
padding-top: 60px; /* Location of the box */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
overflow: auto; /* Enable scroll if needed */
background-color: rgb(0,0,0); /* Fallback color */
background: rgba(255, 255, 255, 0.6);; /* Black w/ opacity */
}
/* Modal Content */
.modal-content {
background-color: none;
margin: auto;
padding: 20px;
border: none;
width: 80%;
}
/* The Close Button */
.close {
color: #aaaaaa;
float: right;
font-size: 28px;
font-weight: bold;
}
.close:hover,
.close:focus {
color: #000;
text-decoration: none;
cursor: pointer;
}
p{
text-align: center;
font-size: 30px ;
font-family: "Lobster", serif;
font-weight: bold;
color: black ;
}
</style>
</head>
<body>
<!-- <div id='stars'></div>
<div id='stars2'></div>
<div id='stars3'></div> -->
<div id = "bg"></div>
<div id = "traverse-left"></div>
<div id = "traverse-right"></div>
<div id = "airplane1"></div>
<div id = "car"></div>
<div id = "car2"></div>
<div id = "fade-skyline"></div>
<div id = "distant-skyline"></div>
<div id = "near-skyline"></div>
<div id = "road"></div>
<div id = "bottom-area">
</div>
<button id="myBtn" style="display: none;"></button>
<!-- The Modal -->
<div id="myModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span class="close">×</span>
<p style="text-decoration: underline;">TIPS</p>
<p>• PRESS RIGHT ARROW KEY TO MOVE FORWARD TO ENJOY DRIVE</p>
<p>• PRESS LEFT ARROW KEY TO MOVE BACKWARD TO ENJOY DRIVE</p>
<p>PRESS CROSS BUTTON OR CLICK ON CAR TO CLOSE THIS POPUP</p>
</div>
</div>
</body>
<script>
$('body').scrollLeft(0);
$("#traverse-right").mousedown(function(){
console.log('Hello');
intervalId = setInterval(function(){
var leftPos = $('body').scrollLeft();
$("body").animate({
scrollLeft:leftPos+305}, 100);
},100);}).mouseup(function(){
clearInterval(intervalId);
});
$("#traverse-left").mousedown(function(){
console.log('Hello');
intervalId = setInterval(function(){
var leftPos = $('body').scrollLeft();
$("body").animate({
scrollLeft:leftPos-305}, 100);
},100);}).mouseup(function(){
clearInterval(intervalId);
});
$(window).scroll(function()
{
console.log("his");
var leftPos = $('#bg').position();
var car2Pos = $("#car2").position();
console.log(leftPos);
$("#bg").css({
"left":leftPos.left-2
});
$("#car2").css({
"left": car2Pos.left - 5
});
var bodyPos = $('body').scrollLeft();
// if(bodyPos > 20000)
// {
// console.log('it works !!');
// $('#bg').css({
// "background":"radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%)"
// });
// }
});
var modal = document.getElementById('myModal');
// Get the button that opens the modal
var btn = document.getElementById("myBtn");
// Get the <span> element that closes the modal
var span = document.getElementsByClassName("close")[0];
// When the user clicks the button, open the modal
btn.onclick = function() {
}
document.addEventListener('DOMContentLoaded', function() {
modal.style.display = "block";
});
// When the user clicks on <span> (x), close the modal
span.onclick = function() {
modal.style.display = "none";
}
// When the user clicks anywhere outside of the modal, close it
window.onclick = function(event) {
if (event.target == modal) {
modal.style.display = "none";
}
}
</script>
</html>