-
Notifications
You must be signed in to change notification settings - Fork 2
/
mockup.html
84 lines (78 loc) · 2.2 KB
/
mockup.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Titillium+Web" rel="stylesheet">
</head>
<body>
<header>
</header>
<main>
<section id="top_names">
<article class="top-note">
<h2>Top 10 Names by Genres</h2>
<p id="top_names_mode_switch">
<button value="All">Overall</button>
<button value="M">Men</button>
<button value="F">Women</button>
</p>
</article>
<figure class=""></figure>
</section>
<section id="movie_influencers">
<figure class="viz"></figure>
<div class="switch" style="position: sticky;top:0;left:0;">
<button>Toggle mode</button>
</div>
<article>
<section class="note-container">
<div
class="note"
data-movie="star-wars">
<p>Star Wars</p>
</div>
</section>
<section class="note-container">
<div
class="note"
data-movie="game-of-thrones">
<p>Game of thrones</p>
</div>
</section>
<section class="note-container">
<div
class="note"
data-movie="harry-potter">
<p>Harry Potter</p>
</div>
</section>
<section class="note-container">
<div
class="note"
data-movie="friends">
<p>Friends</p>
</div>
</section>
<section class="note-container">
<div
class="note"
data-movie="the-big-bang-theory">
<p>The big bang theory</p>
</div>
</section>
<section class="note-container">
<div
class="note"
data-movie="matrix">
<p>The Matrix</p>
</div>
</section>
</article>
</section>
</main>
<footer>
</footer>
<script type="text/javascript" src="dist/bundle.js"></script>
</body>
</html>