开发者

Need help with mootools slide down header

开发者 https://www.devze.com 2023-02-15 11:31 出处:网络
Im trying to figure out mootools. What I need is a div which is placed at the top of the page to slide down and wait a few seconds and then slide back up.

Im trying to figure out mootools. What I need is a div which is placed at the top of the page to slide down and wait a few seconds and then slide back up.

Jquery code for this looks like this

jQuery(document).ready(function() {
 jQuery('#headerdiv').delay(3500).slideToggle(600).delay(20000).slideToggle(600);
});

The reason I wont use Jquery is b开发者_StackOverflowecause there are a lot of things using mootools and I had trouble trying to load Jquery with mootools.

Thanks


See the example in action: http://jsfiddle.net/fVddg/

var slider = document.id('slider');

var myFx = new Fx.Slide(slider, {
    link: 'chain'
});

myFx.hide();
myFx.slideIn();
myFx.slideOut.delay(1000, myFx);
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号