使用 XUI 的动画 javascriptscrollLeft
我想使用 XUI 为我的scrollLeft = value 制作动画(请注意,我不能为此使用任何 JQuery 动画)。我尝试使用补间函数,如下所示: x$('#divID')tween(scrollLeft : value + 'px') 但它没有解决问题。
你们中有人知道如何使用 XUI 获得动画的scrollLeft 吗?我真的很感激。谢谢你,上帝保佑!
i want to animate my scrollLeft = value using XUI (note that I can't use any JQuery animation for this one). I tried using the tween function as such: x$('#divID')tween(scrollLeft : value + 'px') and it didn't solve the problem.
Do any of you have an idea on how I can get an animated scrollLeft using XUI? I would really appreciate it. Thank you and God Bless!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法对scrollLeft 进行动画处理,因为它是一个DOM 属性,您只能使用XUI 对CSS 样式进行动画处理。
请参阅文档以供参考。
You cannot animate scrollLeft as it is a DOM property, you can only animate CSS styles with XUI.
See documentation for reference.