Advertisement
ghiwar

ahahahah

Mar 7th, 2020
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4. <head>
  5. <title>HTML video poster Attribute</title>
  6. <style>
  7. .videos img {
  8. width:100%;
  9. height:auto;
  10. }
  11. a.video {
  12. float: left;
  13. position: relative;
  14. }
  15. a.video span {
  16. width: 100%;
  17. height: 100%;
  18. position: absolute;
  19. background: url("https://embed.wwwputlocker.net/images/overlay.png") no-repeat;
  20. background-position: 50% 50%;
  21. background-size: 10%;
  22. }
  23. @media screen and (max-width: 480px) {
  24. a.video span {
  25. background-size: 400%;
  26. }
  27. }
  28. </style>
  29. </head>
  30.  
  31. <body>
  32.  
  33.  
  34.  
  35. <div class="videos">
  36. <a href="https://www.youtube.com/watch?v=F5FEj9U-CJM" class="video">
  37. <span></span>
  38. <img src="https://image.tmdb.org/t/p/original/c1Hbz5xFkLqttnveoniVlGR3oI6.jpg" alt="True Facts About The Mantis Shrimp" />
  39. </a>
  40. </div>
  41.  
  42.  
  43.  
  44. </body>
  45.  
  46. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement