Skip to content

Instantly share code, notes, and snippets.

@dnieh
Last active March 28, 2016 16:37
Show Gist options
  • Save dnieh/cddae3d4f40358cb0010 to your computer and use it in GitHub Desktop.
Save dnieh/cddae3d4f40358cb0010 to your computer and use it in GitHub Desktop.
responsive full screen video on desktop and mobile (index.html)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<section>
<div class="video-container">
<iframe class="video" src="https://www.youtube.com/embed/_hLpmFjKMEA?autoplay=0&controls=0&showinfo=0&autohide=1&loop=1" allowfullscreen></iframe>
</div>
</section>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="js/app.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment