Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2014
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. <div class="swiper-slide">
  2. <video width="1024" height="704" id="vid" loop>
  3. <source src="images/reverse.mp4" type="video/mp4">
  4. </video>
  5. <div id="overlay">
  6. <img src="images/man.png" id="man-photo"/>
  7. </div>
  8. </div>
  9.  
  10.  
  11. #vid {
  12. width: 100%;
  13. height: 100%;
  14. }
  15. #overlay {
  16. position: absolute;
  17. display:block;
  18. width: 100%;
  19. height: 100%;
  20. left: 0;
  21. top: 0;
  22. z-index: 1000;
  23. }
  24. #man-photo {
  25. position: absolute;
  26. top: 200px;
  27. left: 300px;
  28. z-index: 1200;
  29. display: block;
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement