1
1
const createFixture = ( instance , { previousClassName = '' ,
2
2
animationClass,
3
- repeat = false } ) => {
3
+ repeat = false ,
4
+ offset = 0 } ) => {
4
5
5
- const run = function ( isInView , isUpwards = false ) {
6
+ const run = function ( isInView , isUpwards = false , offset = 0 ) {
6
7
instance . isInView = ( ) => isInView
7
- instance . run ( this . el , this . binding , { isUpwards, previousClassName} )
8
+ instance . run ( this . el , this . binding , { offset , isUpwards, previousClassName} )
8
9
}
9
10
10
11
return {
@@ -19,10 +20,10 @@ const createFixture = (instance, { previousClassName = '',
19
20
getClassName : function ( ) { return this . el . className . trim ( ) } ,
20
21
getClassNames : function ( ) { return this . getClassName ( ) . split ( ' ' ) } ,
21
22
scrollDown : function ( isInView ) {
22
- run . call ( this , isInView )
23
+ run . call ( this , isInView , false , offset )
23
24
} ,
24
25
scrollUp : function ( isInView ) {
25
- run . call ( this , isInView , true )
26
+ run . call ( this , isInView , true , offset )
26
27
}
27
28
}
28
29
}
0 commit comments