Skip to content

Instantly share code, notes, and snippets.

@cam-gists
Created August 20, 2012 15:50
Show Gist options
  • Select an option

  • Save cam-gists/3405307 to your computer and use it in GitHub Desktop.

Select an option

Save cam-gists/3405307 to your computer and use it in GitHub Desktop.
JQuery: Slide In Page
//http://forrst.com/posts/Making_a_page_slide_in_from_top_with_JQuery_sol-vmh
$(document).ready(function(){
$("#master").css('top', '-100%').animate({
top: '0%'
}, 100, 'easeOutElastic');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment