Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(ScrollControls): update references to default smoothScroll value… #593

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/guide/controls/scroll-controls.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ The elements that you pass as a slot will be affected by the scroll effect, and
| :--------------- | :------------------------------------------------------- | ------- |
| **pages** | The length of the scroll (not available with htmlScroll) | `4` |
| **distance** | The distance to move the objects | `4` |
| **smoothScroll** | The smooth factor of the scrolling. | `0.5` |
| **smoothScroll** | The smooth factor of the scrolling. | `0.1` |
| **horizontal** | Whether the scroll is horizontal or vertical. | `false` |
| **htmlScroll** | Whether to use the native HTML scroll. | `false` |

Expand Down
2 changes: 1 addition & 1 deletion src/core/controls/ScrollControls.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export interface ScrollControlsProps {
* The smooth factor of the scrolling.
*
* @type {number}
* @default 0.5
* @default 0.1
* @memberof ScrollControlsProps
*/
smoothScroll?: number
Expand Down