【发布时间】:2018-10-18 20:27:05
【问题描述】:
我有以下点击功能,以便在点击视频时播放视频。它在桌面浏览器上完美运行,但在平板电脑上却不行。您按下它,视频会立即暂停。我相信这与寻找点击的点击功能有关,但平板电脑上没有点击功能,但我不确定如何解决。
HTML
<div class="section">
<div class="video">
<video poster="img/my-poster.jpg"><source src="mp4/low-res/my-video.mp4" type="video/mp4"></video>
</div>
</div>
jQuery
$(document).ready(function () {
$('.section video').on("click touchstart", function() {
this.paused ? this.play() : this.pause();
});
});
【问题讨论】:
标签: javascript jquery html html5-video