forked from janpaepke/ScrollMagic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclass_toggles.html
More file actions
118 lines (114 loc) · 4.58 KB
/
class_toggles.html
File metadata and controls
118 lines (114 loc) · 4.58 KB
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
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=500" />
<meta name="keywords" content="ScrollMagic, example, scrolling, attaching, scrollbar, tween, tweenmax" />
<meta name="author" content="Jan Paepke (www.janpaepke.de)" />
<title>Class Toggles - Examples - ScrollMagic</title>
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,400italic|Josefin+Slab:400,700italic' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="../../assets/css/normalize.css" type="text/css">
<link rel="stylesheet" href="../../assets/css/style.css" type="text/css">
<link rel="stylesheet" href="../../assets/css/examples.css" type="text/css">
<link rel="shortcut icon" href="../../assets/img/favicon.ico" type="image/x-icon">
<style type="text/css">
form.move p {
padding: 4px;
float: left;
}
</style>
<script type="text/javascript" src="../../assets/js/lib/jquery.min.js"></script>
<script type="text/javascript" src="../../assets/js/lib/highlight.pack.js"></script>
<script type="text/javascript" src="../../assets/js/lib/modernizr.custom.min.js"></script>
<script type="text/javascript" src="../../assets/js/examples.js"></script>
<script type="text/javascript" src="../../scrollmagic/uncompressed/ScrollMagic.js"></script>
<script type="text/javascript" src="../../scrollmagic/uncompressed/plugins/debug.addIndicators.js"></script>
</head>
<body>
<ul id="menu"></ul>
<div id="content-wrapper">
<div id="example-wrapper">
<div class="scrollContent">
<section id="titlechart">
<div id="description">
<h1>Class Toggles</h1>
<h2>Easily add and remove CSS classes</h2>
<p>
ScrollMagic offers a convenient way to add and remove CSS classes to elements at certain scroll positions.<br>
This is particularly useful for in-page navigation menus.
</p>
<p>
For more information check out the documentation on <a href="../../docs/ScrollMagic.Scene.html#setClassToggle">Scene.setClassToggle()</a>.
</p>
<a href="#" class="viewsource">view source</a>
</div>
</section>
<section class="demo">
<style type="text/css">
.active {
background-color: #307FB5;
}
</style>
<form class="move">
<fieldset>
<p id="high1">One</p>
<p id="high2">Two</p>
<p id="high3">Three</p>
<p id="high4">Four</p>
</fieldset>
</form>
<div class="spacer s1" id="sec1">
<div class="box2" style="background-color: #8DBBE0;">
<p>One</p>
<a href="#" class="viewsource">view source</a>
</div>
</div>
<div class="spacer s1" id="sec2">
<div class="box2" style="background-color: #6AA6D8;">
<p>Two</p>
<a href="#" class="viewsource">view source</a>
</div>
</div>
<div class="spacer s1" id="sec3">
<div class="box2" style="background-color: #4E96D1;">
<p>Three</p>
<a href="#" class="viewsource">view source</a>
</div>
</div>
<div class="spacer s1" id="sec4">
<div class="box2" style="background-color: #307FB5;">
<p>Four</p>
<a href="#" class="viewsource">view source</a>
</div>
</div>
<div class="spacer s2"></div>
<script>
// init controller
var controller = new ScrollMagic.Controller({globalSceneOptions: {duration: 100}});
// build scenes
new ScrollMagic.Scene({triggerElement: "#sec1"})
.setClassToggle("#high1", "active") // add class toggle
.addIndicators() // add indicators (requires plugin)
.addTo(controller);
new ScrollMagic.Scene({triggerElement: "#sec2"})
.setClassToggle("#high2", "active") // add class toggle
.addIndicators() // add indicators (requires plugin)
.addTo(controller);
new ScrollMagic.Scene({triggerElement: "#sec3"})
.setClassToggle("#high3", "active") // add class toggle
.addIndicators() // add indicators (requires plugin)
.addTo(controller);
new ScrollMagic.Scene({triggerElement: "#sec4"})
.setClassToggle("#high4", "active") // add class toggle
.addIndicators() // add indicators (requires plugin)
.addTo(controller);
</script>
</section>
<div class="spacer s_viewport"></div>
</div>
</div>
</div>
<script type="text/javascript" src="../../assets/js/tracking.js"></script>
</body>
</html>