Created
September 12, 2016 11:56
-
-
Save hteumeuleu/826bfad2584bb72f44e5436a1f8605b4 to your computer and use it in GitHub Desktop.
Video Player example for Apple Mail in iOS 10
This file contains 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<title>iOS 10 video</title> | |
<style type="text/css"> | |
@supports (-webkit-overflow-scrolling:touch) and (color:#ffffffff) { | |
.video-player { display:block !important; } | |
.video-fallback { display:none !important; } | |
} | |
</style> | |
</head> | |
<body style="Margin:0; padding:0; font:1em sans-serif; background:#fff;"> | |
<div style="Margin:0 auto; max-width:600px;"> | |
<div class="video-player" style="display:none;"> | |
<video style="width:100%;height:auto;" autoplay muted playsinline loop> | |
<source src="https://i.imgur.com/FvJ5aP5.mp4" type="video/mp4" /> | |
<a href="https://i.imgur.com/FvJ5aP5.gifv"><img src="http://i.imgur.com/EjaukAV.jpg" alt="" /></a> | |
</video> | |
</div> | |
<div class="video-fallback"> | |
<a href="https://i.imgur.com/FvJ5aP5.gifv"><img src="http://i.imgur.com/EjaukAV.jpg" alt="" style="width:100%;height:auto;" /></a> | |
</div> | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment