1
- /* global TimelineMax, ScrollMagic, Power2, $ */
1
+ /* global TimelineMax, ScrollMagic, Power2, Bounce, $ */
2
2
'use strict' ;
3
3
4
4
$ ( function ( ) {
@@ -68,9 +68,9 @@ $(function () {
68
68
// Second Section
69
69
tl [ 1 ] = new TimelineMax ( ) ;
70
70
tl [ 1 ]
71
- . to ( $widgets , .2 , { x :0 , y :0 , z :0 , scale :0 } )
71
+ . to ( $widgets , 0 .2, { x :0 , y :0 , z :0 , scale :0 } )
72
72
. to ( $illusSync , 3 , { scale :0 , opacity :0 } )
73
- . to ( $anim , 5 , { scale :.5 } )
73
+ . to ( $anim , 5 , { scale :0 .5 } )
74
74
. to ( '#anim img' , 4 , { opacity :0 } , '-=8' )
75
75
. to ( '#anim > .widget' , 2 , { opacity :1 , scale :1 } )
76
76
. to ( '.screen-1' , 3 , { opacity :1 } )
@@ -111,12 +111,12 @@ $(function () {
111
111
. addTo ( controller ) ;
112
112
}
113
113
114
- scenes [ 0 ] . on ( 'start' , function ( event ) {
114
+ scenes [ 0 ] . on ( 'start' , function ( ) {
115
115
intro . seek ( 20 ) ;
116
116
} ) ;
117
117
118
- scenes [ 3 ] . on ( 'leave' , function ( event ) {
119
- $ ( 'body:after' ) . addClass ( 'hide' )
118
+ scenes [ 3 ] . on ( 'leave' , function ( ) {
119
+ $ ( 'body:after' ) . addClass ( 'hide' ) ;
120
120
} ) ;
121
121
122
122
} ) ;
@@ -165,7 +165,7 @@ function animate() {
165
165
context . clearRect ( 0 , 0 , screenW , screenH ) ;
166
166
$ . each ( stars , function ( ) {
167
167
this . draw ( context ) ;
168
- } )
168
+ } ) ;
169
169
}
170
170
171
171
// Star
@@ -175,7 +175,7 @@ function Star(x, y, length, opacity) {
175
175
this . length = parseInt ( length ) ;
176
176
this . opacity = opacity ;
177
177
this . factor = 1 ;
178
- this . increment = Math . random ( ) * .03 ;
178
+ this . increment = Math . random ( ) * 0 .03;
179
179
}
180
180
181
181
// Draw a star
@@ -199,7 +199,7 @@ Star.prototype.draw = function() {
199
199
200
200
this . opacity += this . increment * this . factor ;
201
201
202
- context . beginPath ( )
202
+ context . beginPath ( ) ;
203
203
for ( var i = 5 ; i -- ; ) {
204
204
context . lineTo ( 0 , this . length ) ;
205
205
context . translate ( 0 , this . length ) ;
@@ -215,4 +215,4 @@ Star.prototype.draw = function() {
215
215
// context.shadowColor = '#1D96C7';
216
216
context . fill ( ) ;
217
217
context . restore ( ) ;
218
- }
218
+ } ;
0 commit comments