0
私はHTML 5ビデオを持っています。それは私が欲しかった方法で動作しますしかし、ユーザーがボタンを押してビデオを一時停止できる方法はありますか?ボタンをクリックします。HTMLビデオを一時停止します(自動再生中)
HTMLでマイコードは次のとおりです。
<video autoplay loop poster="" id="bgvid">
<source src="img/bg.mp4" type="video/webm">
<source src="img/bg.mp4" type="video/mp4">
とCSS ...
video#bgvid {
position: fixed;
top: 50%;
left: 50%;
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
z-index: -100;
-ms-transform: translateX(-50%) translateY(-50%);
-moz-transform: translateX(-50%) translateY(-50%);
-webkit-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
background: url(polina.jpg) no-repeat;
background-size: cover;
}
http://stackoverflow.com/questions/4155329/how-to-pause-a-html5-video-on-an-event – BenG