Return to Snippet

Revision: 30521
at August 16, 2010 20:19 by Rembrand


Initial Code
// http://www.onextrapixel.com/2010/02/23/how-to-use-jquery-to-make-slick-page-transitions/

    $("body").css("display", "none");
    $("body").fadeIn(1500);
		$("a.transition").click(function(event){
			event.preventDefault();
			linkLocation = this.href;
			$("body").fadeOut(500, redirectPage);
		});

	function redirectPage() {
		window.location = linkLocation;
	}

Initial URL


Initial Description
Originally from OneExtraPixel
Making page transitions

Initial Title
Page transitions

Initial Tags


Initial Language
jQuery