-
Notifications
You must be signed in to change notification settings - Fork 1
/
cost-comparisons.html
129 lines (101 loc) · 5.74 KB
/
cost-comparisons.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css" integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/dc/2.1.8/dc.min.css"/>
<link rel="stylesheet" href="assets/css/style.css">
<style>
div {
clear: left;
}
</style>
<style> .comparisons {color: #fbe22e;} </style>
<title>Dental Cost Comparisons</title>
</head>
<body>
<header>
<div id="header-bg"></div>
<div class="container">
<nav class="navbar fixed-top navbar-expand-lg">
<a class="navbar-brand" href="index.html">
<span class="title">Dental Cost Information</span>
<!-- one or the other depending on screen size -->
<div class="sub-title d-none d-md-block">San Diego, California vs Tijuana, Mexico</div>
<div class="sub-title d-xs-block d-md-none">San Diego vs Tijuana</div>
</a>
<button class="navbar-toggler custom-toggler" type="button" data-toggle="collapse"
data-target="#navbarToggler" aria-controls="navbarToggler" aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarToggler">
<!-- INFO this needs to be here in order to have the buttons right justified - there has to be a better way -->
<ul class="navbar-nav mr-auto mt-2 mt-md-0"></ul>
<ul class="nav navbar-nav text-right">
<li class="nav-item">
<a class="nav-link" href="index.html"><span class="home"><span
class="nav-text">Home</span></span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="top-ten-affordable.html"><span class="top-ten"><span class="nav-text">Top 10 Affordable</span></span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="cost-comparisons.html"><span class="comparisons"><span
class="nav-text">Cost Comparisons</span></span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="maps.html"><span class="maps"><span
class="nav-text">Location Maps</span></span></a>
</li>
</ul>
</div>
</nav>
</div>
</header>
<section class="container">
<h3>Comparisons</h3>
<p class="smartphone-message"></p> <!--placeholder for small screen users switch to landscape-->
<!--Overlay Bar Chart-->
<div id="overlay-chart-container">
<p class="chart-intro">This chart shows the average cost of five basic dental procedures in both San Diego and Tijuana (in US
dollars).</p>
<div id="overlay-bar-chart"></div>
</div>
<!--Scatter Chart-->
<div id="scatter-chart-master-container">
<p class="chart-intro">This chart shows the cost per procedure distribution for all dental offices in US dollars</p>
<div id="scatter-chart-container">
<div id="scatter-chart"></div>
</div>
</div>
<!--Pie Charts-->
<div id="pie-chart-master-container">
<p class="smartphone-message"></p> <!--placeholder for small screen users switch to landscape-->
<p class="chart-intro">These pie charts show the percent of dental offices [from the Most Affordable lists] willing to provide actual data. Mock data was
generated for those offices unwilling to give estimates. Note that the Tijuana dental offices are <strong>much</strong> more open with
their pricing.</p>
<div id="pie-chart-container">
<div id="sd-pie-chart"><p class="city-label">San Diego</p></div>
<div id="tj-pie-chart"><p class="city-label">Tijuana</p></div>
</div>
</div>
</section>
<footer>
<hr class="footer-hr">
<p class="footer-text">Map data is ©2019 by Google — Top 10 lists are ©2019 Yelp Inc.</p>
</footer>
<script src="https://code.jquery.com/jquery-3.4.1.js" integrity="sha256-WpOohJOqMqqyKL9FccASB9O0KwACQJpFTUBLTYOVvVU=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/crossfilter/1.3.12/crossfilter.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/dc/2.1.8/dc.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/queue-async/1.0.7/queue.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
<script src="assets/js/cost-comparisons.js"></script>
</body>
</html>