Options i denne funktion
Jeg vil gerne gøre brug af denne funktions options, men jeg forstår desværre ikke hvordan jeg skal definere options når jeg kalder funktionen. Kan nogen hjælpe med det?Jeg har følgende nu:
new ScrollMenu('.menu a')
og jeg vil gerne bruge alle de parametre der er mulighed for med options, som beskrevet i dokumentationen:2
--------------------------------
## Documentation
```javascript
new ScrollMenu(selectors[, options])
```
### Selectors
An array of selectors that will match `a` elements. Can be a simple string for simplicity.
### Options
An object that will override the library's default options. The default options are presented below.
```javascript
{
// animation duration in milliseconds
duration: 400,
// padding to recognize a section as active when scrolling
activeOffset: 40,
// padding when scrolling to a container via menu click
scrollOffset: 10,
// easing function, the default is 'easeInOutCubic'
// you can see more in here: http://gsgd.co.uk/sandbox/jquery/easing/jquery.easing.1.3.js
easingFunction: function(t, b, c, d) {
if ((t/=d/2) < 1) return c/2*t*t*t + b;
return c/2*((t-=2)*t*t + 2) + b;
},
};
```