Advertisement
Guest User

Untitled

a guest
Apr 28th, 2015
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. (function($) {
  2.   $( '.site-header, .loadinggif' ).hide();
  3.   var clicked = false;
  4.  
  5.   $(function() {
  6.     $( '.site-header' ).after(
  7.       '<img id="banner" style="width:100%; margin-top:-240px; position:relative" src="https://i.imgflip.com/kpvez.jpg"></img>',
  8.       '<button id="continuebutton" style="z-index:10; position:absolute; margin-left:48%; margin-top:-50%">Continue</button>'
  9.     );
  10.  
  11.     $( '#continuebutton' ).on( 'click', function() {
  12.         $( '.site-header' ).slideDown( 1000 );
  13.         $( '.entry-content' ).animatescroll({ 'scrollSpeed': 1500, 'padding': -5 });
  14.     });
  15.   });
  16.  
  17.   $(window).on( 'scroll', function() {
  18.     $( '.site-header' ).slideDown( 1000 );
  19.     var height = $( '#banner' ).height() - 40;
  20.     if ( clicked && $(window).scrollTop() < height ) {
  21.       $( '.entry-content' ).animatescroll({ 'scrollSpeed': 0, 'padding': 0 });
  22.     }
  23.     if ( $(window).scrollTop() > height ) {
  24.         clicked = true;
  25.     }
  26.   });
  27. })(jQuery);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement