-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex2.html
309 lines (230 loc) · 9.77 KB
/
index2.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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
<!DOCTYPE html PUBLIC>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>RideAwesome</title>
<link rel="stylesheet" type="text/css" href="css/style2.css" />
<script language="javascript" src="js/jquery-1.4.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#days ul li").hover(function() {
$(this).find("div").stop()
.animate({left: "73", opacity:1}, "fast")
.css ("display","block")
}, function() {
$(this).find("div").stop()
. animate({left: "-145", opacity:1}, "slow");
});
$("#current_month").hover(function(){
$(this).find("div").stop()
.animate({left: "73", opacity:1}, "fast")
.css ("display","block")
}, function() {
$(this).find("div").stop()
.animate({left:"-145",opacity:1}, "slow")
});
});
</script>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script type="text/javascript">
function initialize() {
var mylatlng = new google.maps.LatLng(30.267, -97.75);
var myOptions = {
zoom: 11,
center: mylatlng,
mapTypeId: google.maps.MapTypeId.ROADMAP,
scrollwheel: 0
}
var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
//
// Constructor: google.maps.Map(CSS, options)
// Performs: Creates a new map using the passed optional parameters in the opts parameter.
//
var contentString = '<div id="content" style="width: 350px; height: 150px; overflow-y: scroll; scrollbar-arrow-color:blue; scrollbar-face-color: #e7e7e7; scrollbar-3dlight-color: #a0a0a0; scrollbar-darkshadow-color:#888888">'+ // window scrolling and size
'<div id="siteNotice">'+
'</div>'+
'<h1 id="firstHeading" class="firstHeading">Austin</h1>'+
'<div id="bodyContent">'+
'<p><b>Austin</b> Yep, here it is. This is the city of austin. '+
'Provided that I write enough, then the rest should take care of itself.'+
' This box should wrap around nicely, breaking when it should. It '+
'be tidy and not have any overflow at all. Hopefully, the scroll bar will work.'
'</div>'+
'</div>';
var infowindow = new google.maps.InfoWindow({
content: contentString,
});
var marker = new google.maps.Marker({
position: mylatlng,
map: map,
title:"Hello World!"
});
google.maps.event.addListener(marker, 'click', function() {
infowindow.open(map,marker);
});
}
</script>
</head>
<body onLoad="initialize()">
<div id="top">
Welcome to Ride Awesome
</div>
<div id="container">
<div id="leftnav">
<div id="current_month">
<a href="#">May</a>
<div id="all_months">
<p>
<a href="#">January</a>
<a href="#">February</a>
<a href="#">March</a>
<a href="#">April</a>
<a href="#">May</a>
<a href="#">June</a>
<a href="#">July</a>
<a href="#">August</a>
<a href="#">September</a>
<a href="#">October</a>
<a href="#">November</a>
<a href="#">December</a>
</p>
</div>
</div> <!Close "month">
<div id="days">
<ul>
<li><a href="#"> 1st</a>
<div><p>Something about this date. And yet more. I want to see what happens when "p" has to repeat in the y-direction.</p></div>
</li>
<li><a href="#"> 2nd</a>
<div><p>Something about this date</p></div>
</li>
<li><a href="#"> 3rd</a>
<div><p>Something about this date</p></div>
</li>
<li><a href="#"> 4th</a>
<div><p>Something about this date</p></div>
</li>
<li><a href="#"> 5th</a>
<div><p>Something about this date</p></div>
</li>
<li><a href="#"> 6th</a>
<div><p>Something about this date</p></div>
</li>
<li><a href="#"> 7th</a>
<div><p>Something about this date</p></div>
</li>
<li><a href="#"> 8th</a>
<div><p>Something about this date</p></div>
</li>
<li><a href="#"> 9th</a>
<div><p>Something about this date</p></div>
</li>
<li><a href="#">10th</a>
<div><p>Something about this date</p></div>
</li>
<li><a href="#">11th</a>
<div><p>Something about this date</p></div>
</li>
<li><a href="#">12th</a>
<div><p>Something about this date.</p></div>
</li>
<li><a href="#">13th</a>
<div><p>Something about this date</p></div>
</li>
<li><a href="#">14th</a>
<div><p>Something about this date</p></div>
</li>
<li><a href="#">15th</a>
<div><p>Something about this date</p></div>
</li>
<li><a href="#">16th</a>
<div><p>Something about this date</p></div>
</li>
<li><a href="#">17th</a>
<div><p>Something about this date</p></div>
</li>
<li><a href="#">18th</a>
<div><p>Something about this date</p></div>
</li>
<li><a href="#">19th</a>
<div><p>Something about this date</p></div>
</li>
<li><a href="#">20th</a>
<div><p>Something about this date</p></div>
</li>
<li><a href="#">21th</a>
<div><p>Something about this date</p></div>
</li>
<li><a href="#">22nd</a>
<div><p>Something about this date</p></div>
</li>
<li><a href="#">23rd</a>
<div><p>Something about this date</p></div>
</li>
<li><a href="#">24th</a>
<div><p>Something about this date</p></div>
</li>
<li><a href="#">25th</a>
<div><p>Something about this date</p></div>
</li>
<li><a href="#">26th</a>
<div><p>Something about this date</p></div>
</li>
<li><a href="#">27th</a>
<div><p>Something about this date</p></div>
</li>
<li><a href="#">28th</a>
<div><p>Something about this date</p></div>
</li>
<li><a href="#">29th</a>
<div><p>Something about this date</p></div>
</li>
<li><a href="#">30th</a>
<div><p>Something about this date</p></div>
</li>
<li><a href="#">31st</a>
<div><p>Something about this date</p></div>
</li>
</ul>
</div> <!--close days-->
</div> <!-- close leftnav -->
<div id="map_window">
<div id="map_canvas"></div>
</div>
</div> <!-- close container -->
<div class="blog">
<div class="blog_title">
Getting Started
</div>
<div class="leftcolumn_blog">
</div>
<div class="rightcolumn_blog">
</div>
<div class="centercolumn_blog">
<div class="blog_entry">
Pellentesque nibh felis, eleifend id, commodo in, interdum vitae, leo. Praesent eu elit. Ut eu ligula. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos hymenaeos. Maecenas elementum augue nec nisl. Proin auctor lorem at nibh. Curabitur nulla purus, feugiat id, elementum in, lobortis quis, pede. Vivamus sodales adipiscing sapien. Vestibulum posuere nulla eget wisi. Integer volutpat ligula eget enim. Suspendisse vitae arcu. Quisque pellentesque. Nullam consequat, sem vitae rhoncus tristique, mauris nulla fermentum est, bibendum ullamcorper sapien magna et quam. Sed dapibus vehicula odio. Proin bibendum gravida nisl. Fusce lorem. Phasellus sagittis, nulla in hendrerit laoreet, libero lacus feugiat urna, eget hendrerit pede magna vitae lorem. Praesent mauris.
</div>
</div>
<div class="blog_title">
Safety First
</div>
<div class="leftcolumn_blog"></div>
<div class="centercolumn_blog">
<div class="blog_entry">
Pellentesque nibh felis, eleifend id, commodo in, interdum vitae, leo. Praesent eu elit. Ut eu ligula. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos hymenaeos. Maecenas elementum augue nec nisl. Proin auctor lorem at nibh. Curabitur nulla purus, feugiat id, elementum in, lobortis quis, pede. Vivamus sodales adipiscing sapien. Vestibulum posuere nulla eget wisi. Integer volutpat ligula eget enim. Suspendisse vitae arcu. Quisque pellentesque. Nullam consequat, sem vitae rhoncus tristique, mauris nulla fermentum est, bibendum ullamcorper sapien magna et quam. Sed dapibus vehicula odio. Proin bibendum gravida nisl. Fusce lorem. Phasellus sagittis, nulla in hendrerit laoreet, libero lacus feugiat urna, eget hendrerit pede magna vitae lorem. Praesent mauris.
</div>
</div>
<div class="blog_title">
Remember
</div>
<div class="leftcolumn_blog"></div>
<div class="centercolumn_blog">
<div class="blog_entry">
Pellentesque nibh felis, eleifend id, commodo in, interdum vitae, leo. Praesent eu elit. Ut eu ligula. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos hymenaeos. Maecenas elementum augue nec nisl. Proin auctor lorem at nibh. Curabitur nulla purus, feugiat id, elementum in, lobortis quis, pede. Vivamus sodales adipiscing sapien. Vestibulum posuere nulla eget wisi. Integer volutpat ligula eget enim. Suspendisse vitae arcu. Quisque pellentesque. Nullam consequat, sem vitae rhoncus tristique, mauris nulla fermentum est, bibendum ullamcorper sapien magna et quam. Sed dapibus vehicula odio. Proin bibendum gravida nisl. Fusce lorem. Phasellus sagittis, nulla in hendrerit laoreet, libero lacus feugiat urna, eget hendrerit pede magna vitae lorem. Praesent mauris.
</div>
</div>
</div>
<div class="footer">
</div>
</body>
</html>