Skip to content

Commit 48370ce

Browse files
committedMar 27, 2013
options.snapOffset : when snapping, snap with this number in pixels as an offset
1 parent b7df195 commit 48370ce

2 files changed

+5
-2
lines changed
 

‎grid_and_snap_while_scrolling_example.html

+1
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ <h1>Example of snapping to a grid while scrolling</h1>
9999
scrollInertia:0,
100100
mouseWheelPixels:19,
101101
snapAmount:19,
102+
snapOffset: 1,
102103
scrollButtons:{
103104
enable:true,
104105
scrollType:"pixels",

‎jquery.mCustomScrollbar.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ along with this program. If not, see http://www.gnu.org/licenses/.
3535
autoDraggerLength:true, /*auto-adjust scrollbar dragger length: boolean*/
3636
autoHideScrollbar:false, /*auto-hide scrollbar when idle*/
3737
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 */
3839
scrollButtons:{ /*scroll buttons*/
3940
enable:false, /*scroll buttons support: boolean*/
4041
scrollType:"continuous", /*scroll buttons scrolling type: "continuous", "pixels"*/
@@ -126,6 +127,7 @@ along with this program. If not, see http://www.gnu.org/licenses/.
126127
"autoDraggerLength":options.autoDraggerLength,
127128
"autoHideScrollbar":options.autoHideScrollbar,
128129
"snapAmount":options.snapAmount,
130+
"snapOffset":options.snapOffset,
129131
"scrollButtons_enable":options.scrollButtons.enable,
130132
"scrollButtons_scrollType":options.scrollButtons.scrollType,
131133
"scrollButtons_scrollSpeed":options.scrollButtons.scrollSpeed,
@@ -678,7 +680,7 @@ along with this program. If not, see http://www.gnu.org/licenses/.
678680
}else{scrollTo=-scrollTo;}
679681
var snapAmount = $this.data("snapAmount");
680682
if (snapAmount) {
681-
scrollTo = Math.round(scrollTo / snapAmount) * snapAmount;
683+
scrollTo = Math.round(scrollTo / snapAmount) * snapAmount - $this.data("snapOffset");
682684
}
683685
/*scrolling animation*/
684686
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/.
717719
}else{scrollTo=-scrollTo;}
718720
var snapAmount = $this.data("snapAmount");
719721
if (snapAmount) {
720-
scrollTo = Math.round(scrollTo / snapAmount) * snapAmount;
722+
scrollTo = Math.round(scrollTo / snapAmount) * snapAmount - $this.data("snapOffset");
721723
}
722724
/*scrolling animation*/
723725
functions.mTweenAxis.call(this,mCSB_dragger[0],"top",Math.round(draggerScrollTo),draggerSpeed,options.scrollEasing);

0 commit comments

Comments
 (0)