jquery - Sliding Panel Reveal -
i have made sliding panel simple jquery, not wanted.
what want, literally this: http://jquerymobile.com/demos/1.3.0-beta.1/docs/panels/ panel appears when click "reveal". right now, panel "overlay" command, not want. tried extract code website above, it's mess :p
i grateful if of come sliding panel "reveal". preferably using jquery.
thank in advance!
this current coding.
$(document).ready(function(){ $('#show_menu').on('click' , function() { $('div.panel').animate({ 'width' : 'show'} ,500, function() { $('div.home').fadein(400); });
});
$('span.close').on('click' , function(){ $('div.home').fadeout(400 , function() { $('div.panel').animate({ 'width':'hide'}, 500); }); });
});
Comments
Post a Comment