Smooth scroll angular2

前端 未结 9 2180
旧巷少年郎
旧巷少年郎 2020-12-24 07:47

I am having trouble getting a smooth scroll service to work in angular 2. Are there any services for smooth scrolling, or plain anchor scrolling, that might work until the

9条回答
  •  伪装坚强ぢ
    2020-12-24 08:08

    The easier way to achieve this is by using this polyfill: http://iamdustan.com/smoothscroll/

    1. Install it as: npm install smoothscroll-polyfill
    2. Import it in your polyfill.ts file as: require('smoothscroll-polyfill').polyfill();
    3. Now you can use behavior option of scrollIntoView as:

      (document.querySelector('#'+ anchor)).scrollIntoView({ behavior: 'smooth' });

提交回复
热议问题