我有一个离子卷轴,可以滚动其他组件。为此,我使用函数scroll1.scrollTo(left, top, false);
但是,此功能不允许滚动到负面位置,如
scroll1.scrollTo(left, -50, false);
那么有可能实现这个目标吗?
我的滚动必须滚动而没有任何用户交互(这就是我使用scrollTo函数的原因),而我的主要目标是负顶部位置是模拟弹跳效果。
答案 0 :(得分:0)
VelocityJS显然可以做到这一点 Velocity是一个非常强大的全Javascript动画/滚动和更多的librairy。
速度演示滚动:demo scroll velocity
$element
/* Then scroll to a position 250 pixels BELOW the div. */
.velocity("scroll", { duration: 750, offset: 250 })
/* Scroll to a position 50 pixels ABOVE the div. */
.velocity("scroll", { duration: 750, offset: -50 });