vue如何使用velocity实现锚点滚动?

在vue中使用velocity scroll动画不执行,也没有错误提示。

let toElement = document.querySelector(target);
let container = document.querySelector('body');
Velocity(toElement, 'scroll', {
    container: container, 
    duration: 500, 
    offset: -60, 
    easing: 'ease-out'
});

toElement 目标元素,container容器元素

阅读 3.7k
1 个回答
推荐问题
宣传栏