当我点击按钮时,我希望能够平滑地自动滚动到Polymer 1.0铁列表中的特定元素。
现在,由于 scrollToIndex 方法,我有一个简单的自动滚动。
但是我希望有一个流畅的动画,比如jQuery动画$("#list").animate({ scrollTop: 300 }, 2000);
,但没有jQuery 。
我遇到的一个大问题是,由于铁列表不能同时显示所有项目,因此我找不到特定项目的scrollTop位置,因为它尚未存在于DOM中。
我在这里开始了一个JSFiddle:http://jsfiddle.net/c52fakyf/2/
感谢您的帮助!
答案 0 :(得分:2)
我刚刚通过requestAnimationFrame学习动画,我想到了这个问题。我制作了一个简单的动画方法:
animate: function(callbackObj, duration) {
var requestAnimationFrame = window.requestAnimationFrame || window.webkitRequestAnimationFrame || window.mozRequestAnimationFrame || window.oRequestAnimationFrame || window.msRequestAnimationFrame;
var startTime = 0, percentage = 0, animationTime = 0;
duration = duration*1000 || 1000;
var animate = function(timestamp) {
if (startTime === 0) {
startTime = timestamp;
} else {
animationTime = timestamp - startTime;
}
if (typeof callbackObj.start === 'function' && startTime === timestamp) {
callbackObj.start();
requestAnimationFrame(animate);
} else if (animationTime < duration) {
if (typeof callbackObj.progress === 'function') {
percentage = animationTime / duration;
callbackObj.progress(percentage);
}
requestAnimationFrame(animate);
} else if (typeof callbackObj.done === 'function'){
callbackObj.done();
}
};
return requestAnimationFrame(animate);
},
它基本上是一种递归方法,每次刷新屏幕时都会更新。该方法接受一个回调对象,其函数位于属性 .start , .progress 和 .done 下。
我稍微修改了你的代码:
_autoScroll: function() {
var sequenceObj = {};
var seconds = 2;
var rangeInPixels = 500;
sequenceObj.progress = (function(percentage) {
this.$.itemList.scroll(0, this.easeInOutQuad(percentage)*rangeInPixels);
}).bind(this);
this.animate(sequenceObj, seconds);
},
我从罗伯特·彭纳的缓和功能中得到了easeInOut:
easeInOutQuad: function (t) { return t<.5 ? 2*t*t : -1+(4-2*t)*t },
和violá:
这不完全是你所要求的,但这是你可以继续的开始。