@@ -35,6 +35,7 @@ along with this program. If not, see http://www.gnu.org/licenses/.
35
35
autoDraggerLength :true , /*auto-adjust scrollbar dragger length: boolean*/
36
36
autoHideScrollbar :false , /*auto-hide scrollbar when idle*/
37
37
snapAmount :null , /* optional element always snaps to a multiple of this number in pixels */
38
+ snapOffset :0 , /* when snapping, snap with this number in pixels as an offset */
38
39
scrollButtons :{ /*scroll buttons*/
39
40
enable :false , /*scroll buttons support: boolean*/
40
41
scrollType :"continuous" , /*scroll buttons scrolling type: "continuous", "pixels"*/
@@ -126,6 +127,7 @@ along with this program. If not, see http://www.gnu.org/licenses/.
126
127
"autoDraggerLength" :options . autoDraggerLength ,
127
128
"autoHideScrollbar" :options . autoHideScrollbar ,
128
129
"snapAmount" :options . snapAmount ,
130
+ "snapOffset" :options . snapOffset ,
129
131
"scrollButtons_enable" :options . scrollButtons . enable ,
130
132
"scrollButtons_scrollType" :options . scrollButtons . scrollType ,
131
133
"scrollButtons_scrollSpeed" :options . scrollButtons . scrollSpeed ,
@@ -678,7 +680,7 @@ along with this program. If not, see http://www.gnu.org/licenses/.
678
680
} else { scrollTo = - scrollTo ; }
679
681
var snapAmount = $this . data ( "snapAmount" ) ;
680
682
if ( snapAmount ) {
681
- scrollTo = Math . round ( scrollTo / snapAmount ) * snapAmount ;
683
+ scrollTo = Math . round ( scrollTo / snapAmount ) * snapAmount - $this . data ( "snapOffset" ) ;
682
684
}
683
685
/*scrolling animation*/
684
686
functions . mTweenAxis . call ( this , mCSB_dragger [ 0 ] , "left" , Math . round ( draggerScrollTo ) , draggerSpeed , options . scrollEasing ) ;
@@ -717,7 +719,7 @@ along with this program. If not, see http://www.gnu.org/licenses/.
717
719
} else { scrollTo = - scrollTo ; }
718
720
var snapAmount = $this . data ( "snapAmount" ) ;
719
721
if ( snapAmount ) {
720
- scrollTo = Math . round ( scrollTo / snapAmount ) * snapAmount ;
722
+ scrollTo = Math . round ( scrollTo / snapAmount ) * snapAmount - $this . data ( "snapOffset" ) ;
721
723
}
722
724
/*scrolling animation*/
723
725
functions . mTweenAxis . call ( this , mCSB_dragger [ 0 ] , "top" , Math . round ( draggerScrollTo ) , draggerSpeed , options . scrollEasing ) ;
0 commit comments