jquery SlideUp/ SlideDown xui 等效项

发布于 2024-10-16 08:05:27 字数 630 浏览 5 评论 0原文

你好,我正在尝试使用 [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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

葬心 2024-10-23 08:05:27

为什么不在填充和淡出上使用淡出?边框,或将它们设置为自动或无...

Why not use a fadeOut on the padding & border, or set them to auto or none...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文