-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwheel.html
105 lines (88 loc) · 4.02 KB
/
wheel.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- link to the style sheet for the wheel things -->
<link rel='stylesheet' href="./assets/css/style.css">
<title>Wheel</title>
<!-- Links to stylesheet implementations -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Pacifico&family=Quicksand:wght@300;400;500&family=Sono:wght@300&display=swap" rel="stylesheet">
<link rel='stylesheet' href="./assets/css/style.css">
<!-- dayjs link -->
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dayjs.min.js"
integrity="sha256-iu/zLUB+QgISXBLCW/mcDi/rnf4m4uEDO0wauy76x7U="
crossorigin="anonymous"
></script>
</head>
<body>
<!-- NAV BAR -->
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<span class="navbar-brand">Can't Decide?</span>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarText"
aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarText">
<ul class="navbar-nav ms-auto">
<li class="nav-item mx-auto">
<p class="nav-link" id="headerTime"></p>
</li>
<li class="nav-item active mx-auto">
<a class="nav-link" href="./index.html">Home </a>
</li>
<li class="nav-item mx-auto">
<a class="nav-link " href="./credits.html">Credits</a>
</li>
<li class="nav-item mx-auto">
<a class="nav-link" href="./contactUs.html">Contact</a>
</li>
</ul>
</div>
</nav>
<!-- HEADER -->
<header id="wheel-grab">Spin that Wheel!</header>
<!-- SUBHEADER -->
<!-- CONTAINER FOR MR. WHEEL -->
<section class="center">
<div class="center-wheel" id="chart"></div>
<h1></h1>
</div>
</section>
<!-- Subsection for weather -->
<section class="weather-box words" id="words-background">
<!-- NEED THIS FOR EXECUTION on wheel JS -->
<div class="weather-bod">
<h2>Dress to Impress? Nah, Dress for the Weather</h2>
<!-- <h3>[Condition], with a tempurature of [temp]°(°)F</h3> -->
</div>
</section>
<!-- We need to make this in JS DYNAMICALLY JUST DOING THIS AS A SAMPLE -->
<section id="food-options" class='container'>
</section>
<script
src="https://code.jquery.com/jquery-3.6.4.min.js"
integrity="sha256-oP6HI9z1XaZNBrJURtCoUT5SUnxFr8s3BzRl+cbzUq8="
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"
integrity="sha384-7+zCNj/IqJ95wo16oMtfsKbZ9ccEh31eOz1HGyDuCQ6wgnyJNSYdrPa03rtR1zdB"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-QJHtvGhmr9XOIpI6YVutG+2QOK9T+ZnN4kzFN1RtK3zEFEIsxhlmWl5/YESvpZ13"
crossorigin="anonymous"></script>
<!-- Link to sricpt for the wheel webpage -->
<script src="https://d3js.org/d3.v3.min.js" charset="utf-8"></script>
<!-- link for our js file that controles the wheel -->
<!--link for confetti!-->
<script src="./assets/javascript/confetti.js"></script>
<script src="./assets/javascript/sevenWheel.js"></script>
<script src="./assets/javascript/script.js"></script>
<!-- SECTION DISPLAYING THE RANDOMIZED SUGGESTION -->
</body>
</html>