Created
August 2, 2018 00:45
-
-
Save matheusdavidson/f79dbad509714e681e259987ac658640 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// - coloca #contentElement no ion-content | |
// - scrollElement = this.contentElement.nativeElement.getElementsByTagName('ion-scroll'); | |
// - coloca #scrollToElement aonde você quer scrollar | |
// - scrollToElementTop = this.segmentElement.nativeElement.offsetTop | |
scrollElement[0].scroll({ | |
top: scrollToElementTop, | |
left: 0, | |
behavior: 'smooth' | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment