Advertisement
Guest User

Untitled

a guest
Mar 29th, 2017
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. <!--HTML-->
  2. <div class="header">
  3. <div class="headerBg"></div>
  4. </div>
  5.  
  6.  
  7. <!--STYLE-->
  8. <style>
  9. .headerBg {
  10. background-image: url(../img/headerBg.png);
  11. position: fixed;
  12. width: 100%;
  13. height: 100%;
  14. top: 0;
  15. left: 0;
  16. z-index: -1;
  17. display: block;
  18. background-size: cover;
  19. background-position: center;
  20. transition: 0s linear;
  21. transition-property: background-position;
  22. }
  23. </style>
  24.  
  25.  
  26. <!--JS-->
  27. <script>
  28. //Scrollhandling
  29. $(window).scroll(function(e){
  30. //Parallax
  31. var scrolled = $(window).scrollTop();
  32. $('.headerBg').css('top',-(scrolled*0.5)+'px');
  33. });
  34. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement