javascript - Transitioning sorting what is displayed on webpage -
looking way something this.
where when click on section nicely transitions them.
would jquery plug in or done css?
you can both jquery , css, css support little worse jquery-centric solution.
try use jquery...
$('outerdiv').click(function() { // `this` being html element clicked on $(this).fadeout(function() { //after fadeout completes, $('.page-to-show').fadein(); //fade in target page }); });
let me know if need more advice on how set up.
Comments
Post a Comment