Created
December 2, 2020 03:16
-
-
Save brettinternet/339133ee2253ae4c697adcf7df926413 to your computer and use it in GitHub Desktop.
Lazy load embedded YouTube videos
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Source: https://css-tricks.com/lazy-load-embedded-youtube-videos/ --> | |
<!-- Example: https://codepen.io/chriscoyier/pen/GRKZryx --> | |
<iframe | |
width="560" | |
height="315" | |
src="https://www.youtube.com/embed/Y8Wp3dafaMQ" | |
srcdoc="<style>*{padding:0;margin:0;overflow:hidden}html,body{height:100%}img,span{position:absolute;width:100%;top:0;bottom:0;margin:auto}span{height:1.5em;text-align:center;font:48px/1.5 sans-serif;color:white;text-shadow:0 0 0.5em black}</style><a href=https://www.youtube.com/embed/Y8Wp3dafaMQ?autoplay=1><img src=https://img.youtube.com/vi/Y8Wp3dafaMQ/hqdefault.jpg alt='Video The Dark Knight Rises: What Went Wrong? – Wisecrack Edition'><span>▶</span></a>" | |
frameborder="0" | |
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" | |
allowfullscreen | |
title="The Dark Knight Rises: What Went Wrong? – Wisecrack Edition" | |
></iframe> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment