Skip to content

Instantly share code, notes, and snippets.

@avocadowastaken
Last active April 12, 2022 08:06
Show Gist options
  • Save avocadowastaken/5f9f745557125f2e947a7ed2be54914a to your computer and use it in GitHub Desktop.
Save avocadowastaken/5f9f745557125f2e947a7ed2be54914a to your computer and use it in GitHub Desktop.
<!doctype html>
<html>
<head>
<style>
@keyframes hue { 100% { filter: hue-rotate(360deg); } }
body {
margin: 0;
width: 100vw;
height: 100vh;
animation: hue 1s ease-in-out alternate infinite;
}
</style>
</head>
<body>
<iframe width="100%" height="100%" src="https://www.youtube-nocookie.com/embed/dQw4w9WgXcQ?start=43&autoplay=1&mute=1&cc_load_policy=1"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment