滚动到页面顶部

语法

  1. import { scrollToTop } from 'warbler-js';
  2. scrollToTop()

参数

  • null

返回值

  • void

源码

  1. const scrollToTop = () => {
  2. const c = document.documentElement.scrollTop || document.body.scrollTop;
  3. if (c > 0) {
  4. window.requestAnimationFrame(scrollToTop);
  5. window.scrollTo(0, c - c / 8);
  6. }
  7. };

例子

  1. import { scrollToTop } from 'warbler-js';
  2. scrollToTop()