这就是我正在尝试的;
$(document).ready(function(){
//Slides object with a time (integer) and a html string
var slides = {
0: '<div id="playdiv" onclick="vidplay()"><img src="imgs/poster1.png" style="min-height: 300px;"/></div>',
如何保持视频播放的功能;onClick 但也有 #div 里面有图像;点击后消失。
function vidplay() {
var video = document.getElementById("video");
var button = document.getElementById("play");
if (video.paused) {
video.play();
(playdiv).style.display="none";
参考图书馆:http ://cuepoint.org/
所以。你们在说什么;这是,是吧?
function vidplay() {
var video = document.getElementById("video");
var button = document.getElementById("play");
if (video.paused) {
video.play();
$("#playdiv").hide();
但这不起作用。相反,它只是停止了所有功能;并且视频在第一帧被冻结。
第二次修复尝试。
0: '<div id="playdiv" onclick="vidplay()"><img id="supercoolimg" src="imgs/poster1.png" style="min-height: 300px;"/></div>',
function vidplay() {
var video = document.getElementById("video");
var button = document.getElementById("play");
if (video.paused) {
video.play();
document.getElementById('supercoolimg').style.display='none';
失败日志。上午 11 点 59 分。11度。纽约市。(不在外面这样做,但仍然如此。)
下面是我粘贴在pastebin中的完整代码。
谁能告诉我在这里做错了什么?依然没有。
最近(失败)的尝试;
$(playdiv).find('img').css("display","none");