iPadで動作するhtml5ビデオがあります。コントロールを非表示にし、ユーザーがiPadをタップすると、html5ビデオが再生される必要があります。
html5video.jsを使用しています。iPadで表示されるのはポスター画像のみで、iPadをタップしても何も起こりません。以下は私のコードです
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=768px, minimum-scale=1.0, maximum-scale=1.0" />
<link href="http://vjs.zencdn.net/c/video-js.css" rel="stylesheet">
<script src="http://vjs.zencdn.net/c/video.js"></script>
<script>
var video = document.getElementById('video');
video.addEventListener('touchstart',function(){
video.play();
},false);
</script>
</head>
<body>
<video id="video" class="video-js vjs-default-skin" preload="auto" width="620" height="860" poster="img/poster.png" data-setup="{}">
<source src="video/Motion.mp4" type='video/mp4'>
</video>
</body>
</html>