Advertisement
Guest User

Untitled

a guest
Apr 29th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1.  
  2.  
  3. /* Create a Parallax Effect */
  4. .bgimg-1 {
  5. background-attachment: fixed;
  6. background-position: center;
  7. background-repeat: no-repeat;
  8. background-size: cover;
  9. }
  10.  
  11. .bgimg-1 {
  12. position: fixed;
  13. top: 0;
  14. right: 0;
  15. bottom: 0;
  16. left: 0;
  17. overflow: hidden;
  18. z-index: -100;
  19. }
  20.  
  21. .bgimg-1__video {
  22. position: absolute;
  23. top: 0;
  24. left: 0;
  25. width: 100%;
  26. height: 100%;
  27.  
  28. }
  29.  
  30.  
  31.  
  32. <video class="bgimg-1" autoplay poster="" width="" preload="auto" class="" loop muted>
  33. <source src="TimeLapse.mp4" type="video/mp4" class=""> <!-- i want this as the source when screen size is above 1024px-->
  34. <source src="MobiLapse.mp4" type="video/mp4" class=""> <!-- i want this as the source when screen size is below 1024px-->
  35. </video>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement