-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstep1.html
87 lines (71 loc) · 3.74 KB
/
step1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Top Bar</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<nav id="navi" width="600px">
<header>
<div class="container">
<nav>
<ul>
<li><h1><a href="index.html">Project Timmies</a></h1></li>
<li><a href="JavaScript:newPopup('home.html');" class="icon tasks">Listing</a></li>
<li><a href="settings.html" class="icon settings">.</a></li>
</ul>
</nav>
</div>
</header>
<center><div style="margin = 2px">
<h4>Location: Yonge Steeles</h4><br>
<h4>Price: $1300.00</h4><br>
<h4>Posted: November 30 2014</h4>
</div>
<div>
<a href="step2.html" class="myButton">20 mins</a>
<h3>click time to view all route options</h4>
<img src="img/star2.png">
<figure>
<a href="JavaScript:showMedia();"><img class="icon img-responsive" src="img/photos-icon.png" value="Show Media" ></img></a>
<figcaption>Media</figcaption>
</figure>
<figure>
<a href="JavaScript:showReviews();"><img class="icon img-responsive" src="img/community-icon.jpg" value="Community Rating" onclick="showReviews(); closeMedia(); closeWalkscore();closeSafety(); "></a>
<figcaption>Community</figcaption>
</figure>
<figure>
<a href="JavaScript:showSafety();"><img class="icon img-responsive" src="img/safety.jpg" onclick="showSafety(); closeMedia(); closeReviews(); closeWalkscore();"></a>
<figcaption>Safety</figcaption>
</figure>
<figure>
<a href="JavaScript:showWalkscore();"><img class="icon img-responsive" src="img/walkscore.png" onclick="showWalkscore(); closeMedia(); closeSafety(); closeReviews();"></a>
<figcaption>Walkscore</figcaption>
</figure>
</center>
</div>
<script type="text/javascript">
function showMedia() {
window.open('mediasidebar.html','media','height='+(screen.height-100)+',width=300,left='+(screen.width-300)+',top=0,resizable=no,scrollbars=no,toolbar=no,menubar=no,location=no,directories=no,status=yes')
}
function showReviews() {
window.open(
'ratingsidebar.html','reviews','height='+(screen.height-100)+',width=300,left='+(screen.width-300)+',top=0,resizable=no,scrollbars=no,toolbar=no,menubar=no,location=no,directories=no,status=yes')
}
function showSafety() {
window.open(
'safetysidebar.html','safety','height='+(screen.height-100)+',width=300,left='+(screen.width-300)+',top=0,resizable=no,scrollbars=no,toolbar=no,menubar=no,location=no,directories=no,status=yes')
}
function showWalkscore() {
window.open(
'walkscoresidebar.html','walkscore','height='+(screen.height-100)+',width=300,left='+(screen.width-300)+',top=0,resizable=no,scrollbars=no,toolbar=no,menubar=no,location=no,directories=no,status=yes')
}
function newPopup(url) {
window.open(
url,'popUpWindow','height=600,width='+(screen.width/2 + 200)+',left='+(screen.width/4)+',top=0,resizable=no,scrollbars=no,toolbar=no,menubar=no,location=no,directories=no,status=yes')
}
</script>
</body>
</html>