I'm working on an online portfolio that requires user input to click through different videos. It works perfectly fine on a computer, but now I'm working on mobile and
- the muted, webm videos (Friend.webm, Resume.webm, Loading.webm and gmail.webm) don't seem to autoplay/work at all
- the videos that do work play full screen, even with playsinline in the tag
Below is the html: the website is http://yourfriendnoah.me Any help is appreciated!
<html>
<html>
<head>
<meta property="og:image" content="Thumnbnail.gif">
<link rel=stylesheet type="text/css" href="grid.css">
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script type="text/javascript" src="code.js"> </script>
</head>
<body style="background-color:black" align=center>
<div class="container">
<img src="Clayvision.png" width=150% height=auto>
<div id="load">
<video id="loading" width=50% height=auto muted loop>
<source src="Loading.webm" type="video/webm">
</video>
</div>
<div id="video">
<image id="black" src="Black.png" width=85% height=auto muted>
</div>
<div id="video">
<video id="content" width=75% height=auto autoplay muted>
<source src="Friend.webm" type="video/webm" preload="true">
</video>
</div>
<div id="cv">
<video id ="resume" width=50% height=auto muted>
<source src="Resume.webm" type="video/webm">
</video>
</div>
<div id="mail">
<video id ="gmail" width=50% height=auto muted>
<source src="gmail.webm" type="video/webm">
</video>
</div>
<div id="hand">
<video id ="control">
<source src="hand1.webm" type="video/webm">
</video>
</div>
<div id="button1" class="grid"></div>
<div id="button2" class="grid"></div>
<a href='mailto: noahmreiner@gmail.com'>
<div id="button4" class="grid2"></div>
</a>
<a href='https://docs.google.com/document/d/1E34NvJpD936OHYFO8byTiTBSl2k6mzQ-6IfT0OHSk7A/edit?usp=sharing' target="_blank">
<div id="button3" class="grid2"></div>
</a>
</div>
</body>
</html>