Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- window.addEvent('domready', function(){
- var moreSlide = new Fx.Slide('more',{transition:Fx.Transitions.Bounce.easeOut});
- var oneSlide = new Fx.Slide('one',{transition:Fx.Transitions.Bounce.easeOut});
- $('showmore').addEvent('click', function(e){
- oneSlide.slideOut();
- moreSlide.slideIn();
- });
- $('showone').addEvent('click', function(e){
- moreSlide.slideOut();
- oneSlide.slideIn();
- });
- moreSlide.hide();
- });
Add Comment
Please, Sign In to add comment