为什么这行不通?
使用cuepoint.js;您可以在 html5 视频中定义提示点。但; 我想; 另外在点击时显示一个#div。并且仅在点击时。视频恢复后;或者再次点击图片;视频继续播放,#div 将消失!!!!
#playdiv1 {
display: none;
}
$('#1').click(function() {
cuepoint.setTime(1)();
$("playdiv1").style.display = "block"; // Why wont this work?
});
此 div 应与 que 一起显示:
<div id="playdiv1" style="min-height: 300px; min-width: 500px; display: hidden;">
</div>
参考图书馆; http://cuepoint.org/
完整代码 ~ http://pastebin.com/HG0wVVaK
这没有意义。提示点时间;作品..
$('#1').click(function(){
cuepoint.setTime(0)();
但是当我添加 '$('#playdiv1').show();' 就在它下面。它不工作?
$('#1').click(function(){
cuepoint.setTime(0)();
$('#playdiv1').show();
});