jquery SlideUp/ SlideDown xui 等效项
你好,我正在尝试使用 [xui]http://xuijs.com 创建 jQuery 的 SlideUp 和 SlideDown 函数的相同效果)
到目前为止,我已经创建了
xui.extend({
fadeOut:function(dur, callback) {
this.tween({opacity:'0',duration:dur}, callback);
},
fadeIn:function(dur, callback) {
this.tween({opacity:'1',duration:dur}, callback);
}
});
成功的淡入淡出效果:)
但我正在尝试掌握 SlideUp/Down但没有运气。 我尝试过:
slideUp:function(dur, callback) {
this.tween({height:'0',duration:dur}, callback);
}
它适用于没有填充和边框的元素。有谁可以帮助我解决这个问题任何建议将不胜感激:)
Hello im trying to create the same effect of jQuery's slideUp and slideDown function with [xui]http://xuijs.com)
so far i have created the fade effect
xui.extend({
fadeOut:function(dur, callback) {
this.tween({opacity:'0',duration:dur}, callback);
},
fadeIn:function(dur, callback) {
this.tween({opacity:'1',duration:dur}, callback);
}
});
which has been successful:)
But I am trying to master the slideUp/Down but have no luck.
I have tried:
slideUp:function(dur, callback) {
this.tween({height:'0',duration:dur}, callback);
}
which works on elements without padding and a border. Is there anybody who can help me solve this problem any advice will be greatly appreciated :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么不在填充和淡出上使用淡出?边框,或将它们设置为自动或无...
Why not use a fadeOut on the padding & border, or set them to auto or none...