简体   繁体   中英

jquery slideUp/ slideDown xui equivalent

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 :)

为什么不在填充和边框上使用fadeOut,或将它们设置为auto或不设置...

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM