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

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -