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
i use this code .
var dis = distance ; var interval = setInterval(() => { this.document.body.scrollTop = dis; dis=dis-5 ; if (dis<10){ clearInterval(interval); } }, 5);