【发布时间】:2018-06-11 13:05:25
【问题描述】:
因此,视频控件仅在悬停在该视频上时出现,并在光标离开该区域后三秒后消失。这是所需的行为,但是仅在视频开始时才会发生……如果我在视频播放时悬停,它们会立即消失。有没有办法解决这个问题?这里有一支笔来演示:https://codepen.io/anon/pen/RJpjJQ?editors=1111
$('#video').hover(function () {
if (this.hasAttribute("controls")) {
var that = this;
setTimeout(function() {
that.removeAttribute("controls")
}, 3000)
} else {
this.setAttribute("controls", "controls")
}
});
【问题讨论】:
标签: javascript jquery html html5-video