You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-`anchors`: (default `[]`) Defines the anchor links (#example) to be shown on the URL for each section. Using anchors forward and backward navigation will also be possible through the browser. This option also allows users to bookmark a specific section. **Be careful!** if you use anchors, they can not have the same value as any ID element on the site (or NAME element for IE).
136
136
137
137
-`easing`: (default `easeInQuart`) Defines the transition effect to use for the vertical and horizontal scrolling.
138
-
It requieres the file `vendors/jquery.easings.min.js` or [jQuery UI](http://jqueryui.com/) for using some of its transitions. Other libraries could be used instead.
138
+
It requires the file `vendors/jquery.easings.min.js` or [jQuery UI](http://jqueryui.com/) for using some of its transitions. Other libraries could be used instead.
139
139
140
140
-`loopTop`: (default `false`) Defines whether scrolling up in the first section should scroll to the last one or not.
141
141
@@ -206,22 +206,22 @@ $.fn.multiscroll.moveTo(3);
206
206
```
207
207
208
208
### setAllowScrolling
209
-
Adds or remove the possiblity of scrolling through sections by using the mouse wheel/trackpad or touch gestures (which is active by default).
209
+
Adds or remove the possibility of scrolling through sections by using the mouse wheel/trackpad or touch gestures (which is active by default).
210
210
211
211
```javascript
212
212
$.fn.multiscroll.setAllowScrolling(false);
213
213
```
214
214
215
215
### setKeyboardScrolling
216
-
Adds or remove the possiblity of scrolling through sections by using the keyboard arrow keys (which is active by default).
216
+
Adds or remove the possibility of scrolling through sections by using the keyboard arrow keys (which is active by default).
0 commit comments