This repository has been archived by the owner on Jul 27, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (51 loc) · 3.14 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-144525485-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-144525485-1');
</script>
<!-- social media preview -->
<meta property="og:title" content="Russia Investigation Timeline"/>
<meta property="og:description" content="A visualization of data collected by the PBS NewsHour tracking the Mueller probe."/>
<meta property="og:image" content="http://www.kmcelwee.com/russia_viz/thumbnail.png" />
<!-- favicon -->
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🇷🇺</text></svg>">
<!-- -->
<meta charset="UTF-8">
<title>Russia Investigation Timeline</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="russia.js"></script>
<link rel="stylesheet" href="russia.css">
</head>
<body>
<div class="fixed_header">
<div class="go_home">«<a href="http://www.kmcelwee.com"> Discover similar projects</a></div>
<h1>Russia Investigation Timeline</h1>
<nav>
<div class="nav_button MAJOR" onclick="toggle()" onmouseover="highlight_cat('MAJOR')" onmouseout="unhighlight_cat('MAJOR')">MAJOR EVENTS</div>
<div class="nav_button INVESTIGATIONS" onclick="toggle()" onmouseover="highlight_cat('INVESTIGATIONS')" onmouseout="unhighlight_cat('INVESTIGATIONS')">INVESTIGATIONS</div>
<div class="nav_button RUSSIANS" onclick="toggle()" onmouseover="highlight_cat('RUSSIANS')" onmouseout="unhighlight_cat('RUSSIANS')">RUSSIANS, HACKING</div>
<div class="nav_button TRUMP" onclick="toggle()" onmouseover="highlight_cat('TRUMP')" onmouseout="unhighlight_cat('TRUMP')">TRUMP</div>
<div class="nav_button COHEN" onclick="toggle()" onmouseover="highlight_cat('COHEN')" onmouseout="unhighlight_cat('COHEN')">COHEN</div>
<div class="nav_button MANAFORT" onclick="toggle()" onmouseover="highlight_cat('MANAFORT')" onmouseout="unhighlight_cat('MANAFORT')">MANAFORT and GATES</div>
<div class="nav_button KUSHNER" onclick="toggle()" onmouseover="highlight_cat('KUSHNER')" onmouseout="unhighlight_cat('KUSHNER')">KUSHNER</div>
<div class="nav_button JR" onclick="toggle()" onmouseover="highlight_cat('JR')" onmouseout="unhighlight_cat('JR')">TRUMP JR.</div>
<div class="nav_button FLYNN" onclick="toggle()" onmouseover="highlight_cat('FLYNN')" onmouseout="unhighlight_cat('FLYNN')">FLYNN</div>
<div class="nav_button PAPADOPOULOS" onclick="toggle()" onmouseover="highlight_cat('PAPADOPOULOS')" onmouseout="unhighlight_cat('PAPADOPOULOS')">PAPADOPOULOS</div>
<div class="nav_button PAGE" onclick="toggle()" onmouseover="highlight_cat('PAGE')" onmouseout="unhighlight_cat('PAGE')">PAGE</div>
<div class="nav_button SESSIONS" onclick="toggle()" onmouseover="highlight_cat('SESSIONS')" onmouseout="unhighlight_cat('SESSIONS')">SESSIONS, STONE and OTHER</div>
</nav>
<br>
<hr>
</div>
<div id="all_years"></div>
<br>
<br>
<p id="after_info"></p>
</body>
</html>