Advertisement
Guest User

Untitled

a guest
Aug 27th, 2016
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. <script type="text/javascript">
  2. $(window).scroll(function() {
  3. if ($(this).scrollTop()>850){
  4. $("#bio-title").fadeOut();
  5. $("#bio-facts").css( "height", "450" );
  6. } else {
  7. $("#bio-title").fadeIn();
  8. $("#bio-facts").css( "height", "200" );
  9. }
  10. });
  11. </script>
  12.  
  13. <div class="container">
  14. <div id="bio-title">...</div>
  15. <div id="bio-facts">-...-</div>
  16. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement