Advertisement
Guest User

Untitled

a guest
Apr 21st, 2014
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. <?php if(is_front_page() ) { ?>
  2. <div id="videoContainer">
  3. <video autoplay loop id="videoBackground" preload="auto">
  4. <source src="http://yokellocalhosting.com/freddy/wp-content/uploads/2014/03/Fabulous_Freddys_Background_MP4.mp4" type="video/mp4" />
  5. <source src="http://yokellocalhosting.com/freddy/wp-content/uploads/2014/03/Fabulous_Freddys_Background_OGG.ogg" type="video/ogg" />
  6. <source src="http://yokellocalhosting.com/freddy/wp-content/uploads/2014/03/Fabulous_Freddys_Background_WEBM.webm" type="video/webm" />
  7. </video>
  8. </div>
  9. <?php } ?>
  10.  
  11. #videoContainer{
  12. position: fixed;
  13. left: 0px;
  14. top: 0px;
  15. z-index: 9;
  16. width: 100%;
  17. height: 100%;
  18. }
  19. #videoBackground{
  20. position: relative;
  21. right: 0;
  22. bottom: 0;
  23. min-width: 100%;
  24. min-height: 100%;
  25. width: auto;
  26. height: auto;
  27. z-index: 9;
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement