vue-scrollto
vue-scrollto copied to clipboard
Adds a directive that listens for click events and scrolls to elements.
Hi, Example case: ``` VueScrollTo.scrollTo('#xxxelement', 2000, { container: '#xxxcontainer', }); ``` it seems that there is a validator for the target element to scroll to, producing the warning: ``` [vue-scrollto...
Hi, in many components I use ` this.$scrollTo(this.$el)`, and it works well ! However, I found an other case where it's more complicated : I have to pass a Css...
My scrolling is in TAB a, and when I switch to b, and then back to a, scrolling doesn't work
The force=false code is only based on heights and vertical measurements.
Hi, Firstly, thanks for this nice component :) Secondly, I think I found some bug. When I trigger scroll programmatically, duration isn't the same like in options object. You can...
I have done a webapp with vue.js, using vue-scrollto package. I have several elements that when clicked, it scroll down to a div. When testing it with PC browser (Chrome)...
Has anyone planned on making it available to have a different offset value for x and y ?
A simple fix for #92 Not sure if it breaks anything else as there are no tests to run. Works in browser by linking the script with Feel free to...
## Problem In [this fiddle](https://jsfiddle.net/egh95a0q/163/) I've reproduced a problem I have with scrolling animations building up in background in an inactive browser tab. ## Reproduction scenario 1. run the [fiddle](https://jsfiddle.net/egh95a0q/163/)...
Would it be possible to add a ['scroll into view'](https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoView) functionality ? Those are the features that I wish could exist in your library: - to avoid scrolling if the...