-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
91 lines (67 loc) · 3 KB
/
home.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
<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- this makes the elements scalable -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Europa</title>
<meta name="description" content="Examples for creative website header animations using Canvas and JavaScript" />
<meta name="keywords" content="header, canvas, animated, creative, inspiration, javascript" />
<meta name="author" content="Codrops" />
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" type="text/css" href="/css/normalize.css" />
<link rel="stylesheet" type="text/css" href="css/demo.css" />
<link rel="stylesheet" type="text/css" href="css/component.css" />
<link href='http://fonts.googleapis.com/css?family=Raleway:200,400,800' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="css/navbar.css"/>
<link rel="stylesheet" type="text/css" href="css/imagegallery.css"/>
<!-- HEADDDDDDDDDDDDDDDDDD -->
<ul >
<li><a href="../">Home</a></li>
<li class="dropdown">
<a href="javascript:void(0)" class="dropbtn">Overview</a>
<div class="dropdown-content">
<a href="/WhatIsEuropa.html">What is Europa?</a>
<a href="/GeologyOfEuropa.html">Geology of Europa</a>
<a href="/GeologicalInferences.html">Geological inferences</a>
<a href="/ExternalInfluences.html">Europa's external influences</a>
<a href="/magnetosphere.html">Magentospheres effects</a>
<a href="/Plumes.html">Plumes and ridges</a>
<a href="/GeologicalProjections.html">Geological projections</a>
</div>
</li>
<li><a href="/References.html">References</a></li>
<div style="float:right;">
</div>
<script>
// Get the modal
var modal = document.getElementById('id01');
// When the user clicks anywhere outside of the modal, close it
window.onclick = function(event) {
if (event.target == modal) {
modal.style.display = "none";
}
}
</script>
</ul>
</head>
<body>
<div class="container demo-1">
<div class="content">
<div id="large-header" class="large-header">
<canvas id="demo-canvas"></canvas>
<h1 class="main-title" style="padding-top:0%"> Europa <span class="thin"> <br> By Miles McCloskey</span></h1>
</canvas>
</div>
</div>
<!-- Related demos -->
<!-- <p class="ref">Image credits: <a href="http://www.eso.org/public/images/eso1205a/">ESO/VISTA/J. Emerson. Acknowledgment: Cambridge Astronomical Survey Unit</a></p> -->
</div><!-- /container -->
<script src="js/TweenLite.min.js"></script>
<script src="js/EasePack.min.js"></script>
<script src="js/rAF.js"></script>
<script src="js/demo-1.js"></script>
</body>
</html>