-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (47 loc) · 986 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Scroll It</title>
<link rel="stylesheet" href="styles.css">
</head>
<body class="bgct-red">
<header class="site-header">
Scroll the Rainbow!
</header>
<main>
<section id="red">
<h1>Red</h1>
</section>
<section id="orange">
<h1>Orange</h1>
</section>
<section id="yellow">
<h1>Yellow</h1>
</section>
<section id="green">
<h1>Green</h1>
</section>
<section id="blue">
<h1>Blue</h1>
</section>
<section id="indigo">
<h1>Indigo</h1>
</section>
<section id="violet">
<h1>Violet</h1>
</section>
</main>
<footer class="site-footer">
</footer>
<script src="http://code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="bgColorTween.js"></script>
<script>
$(function(){
bgColorTween.init();
});
</script>
</body>
</html>