我正在使用下面的动画向上滑动我的工具栏并向上滑动,但它不会停留。它滑回原来的位置。这是正常行为吗?......如果是这样,我必须明确设置工具栏的新顶值吗?同样在我的工具栏配置中,我指定:top:1536。
Code:
Ext.Anim.run(toolbar,'slide',{
direction: 'up',
duration: 1000,
from:{top:1536},
to:{top:1432}
});
答案 0 :(得分:0)
试试这个。它应该工作
Ext.Animator.run({
element: toolbar,
duration: 1000,
easing: 'ease-in',
preserveEndState: true,
from: {top:1536},
to: {top:1432}
});