javascript - How to do window.scrollTo(0,0) in Svelte - Stack Overflow

I am using svelte and svelte-routing to create a website and try to scroll to the top of the page whene

I am using svelte and svelte-routing to create a website and try to scroll to the top of the page whenever a User navigates around. In other Frameworks like React window.scrollTo(0, 0) works perfectly fine. In Svelte, the following code does nothing unfortunately:

import { onMount } from "svelte";

onMount(() => window.scrollTo(0,0));

So what is the trick to make this work?

I am using svelte and svelte-routing to create a website and try to scroll to the top of the page whenever a User navigates around. In other Frameworks like React window.scrollTo(0, 0) works perfectly fine. In Svelte, the following code does nothing unfortunately:

import { onMount } from "svelte";

onMount(() => window.scrollTo(0,0));

So what is the trick to make this work?

Share Improve this question asked Oct 10, 2019 at 10:33 Gh05dGh05d 9,02211 gold badges40 silver badges82 bronze badges 2
  • 5 Please see this REPL, everything is working as expected, no? – Shaya Ulman Commented Oct 10, 2019 at 17:43
  • Yes, it works fine. So I must have some kind of bug in my code. I can't really think of anything. – Gh05d Commented Oct 11, 2019 at 8:02
Add a ment  | 

3 Answers 3

Reset to default 7

You can also bind to window properties like scrollX and scrollY using svelte window bind (API doc):

<svelte:window bind:scrollY={y}/>

Now you can read en set the y property. See this Svelte docs REPL.

Okay, the bug was not a svelte problem. The issue was with the html styles. Seems like the overflow of the html was to be set on auto to work and not! on the body. Anybody also experiencing this bug can check out this thread.

Install the Svelte-scrollto package from npm. It helps with scrolling with animation.

npm i svelte-scrollto

then in your svelte file

<script>
 import * as animateScroll from "svelte-scrollto";
</script> 

<a on:click={() => animateScroll.scrollToBottom()}> Scroll to bottom </a>
<a on:click={() => animateScroll.scrollToTop()}> Scroll to top </a>

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743699066a4492256.html

相关推荐

  • javascript - How to do window.scrollTo(0,0) in Svelte - Stack Overflow

    I am using svelte and svelte-routing to create a website and try to scroll to the top of the page whene

    17小时前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信