如何在 jQuery 图像滑块中播放视频?
How to play a video in jQuery image slider?
我在 WordPress 站点的 jQuery 中写了一个 jQuery 滑块。
如果 src 扩展名是 "mp4",我想启用它来播放视频。
有什么想法吗?
这里是 HTML 生成的示例:(请注意第一个 img src 是 link 视频)
我想让访问者点击播放按钮开始播放视频。
<div id="img-container" style="width: 2828.1px; padding-right: 886px;">
<div class="picture_holder">
<div class="picture">
<img src="/wp-content/uploads/2015/12/VideoClip.mp4" height="1080" width="842" alt="" title="" style="height: 414px; width: 323px;">
<h4 class="captioning"><br><span class="rtl"></span></h4>
</div>
</div>
<div class="picture_holder">
<div class="picture">
<img src="/wp-content/uploads/2017/03/railings.png" height="612" width="600" alt="" title="" style="height: 414px; width: 230px;">
<h4 class="captioning"><br><span class="rtl"></span></h4>
</div>
</div>
<div class="picture_holder">
<div class="picture">
<img src="/wp-content/uploads/2017/03/railing-1.png" height="600" width="462" alt="" title="" style="height: 414px; width: 177px;">
<h4 class="captioning"><br><span class="rtl"></span></h4>
</div>
</div>
<div style="clear: left;"></div>
</div>
这是我正在寻找的代码:(将用视频标签替换每个 mp4 link):
$('.picture_holder .picture > img').each(function(index){
console.log("index="+index+" Video src = "+ $(this).attr('src') + "<<<");
let imgsrc = $(this).attr('src');
if (imgsrc.indexOf(".mp4") >0) {
console.log("want to replace");
$(this).parent().prepend('<video width="320" height="600" controls><source src="'+imgsrc+'" type="video/mp4"></video>');
$(this).remove();
}
});
它将 img
元素替换为 video
元素。
我使用 parent().prepend()
只是因为 replaceWith()
在这里不起作用。
仍然缺少一些修复来正确放置它,但它有效。
我在 WordPress 站点的 jQuery 中写了一个 jQuery 滑块。
如果 src 扩展名是 "mp4",我想启用它来播放视频。
有什么想法吗?
这里是 HTML 生成的示例:(请注意第一个 img src 是 link 视频)
我想让访问者点击播放按钮开始播放视频。
<div id="img-container" style="width: 2828.1px; padding-right: 886px;">
<div class="picture_holder">
<div class="picture">
<img src="/wp-content/uploads/2015/12/VideoClip.mp4" height="1080" width="842" alt="" title="" style="height: 414px; width: 323px;">
<h4 class="captioning"><br><span class="rtl"></span></h4>
</div>
</div>
<div class="picture_holder">
<div class="picture">
<img src="/wp-content/uploads/2017/03/railings.png" height="612" width="600" alt="" title="" style="height: 414px; width: 230px;">
<h4 class="captioning"><br><span class="rtl"></span></h4>
</div>
</div>
<div class="picture_holder">
<div class="picture">
<img src="/wp-content/uploads/2017/03/railing-1.png" height="600" width="462" alt="" title="" style="height: 414px; width: 177px;">
<h4 class="captioning"><br><span class="rtl"></span></h4>
</div>
</div>
<div style="clear: left;"></div>
</div>
这是我正在寻找的代码:(将用视频标签替换每个 mp4 link):
$('.picture_holder .picture > img').each(function(index){
console.log("index="+index+" Video src = "+ $(this).attr('src') + "<<<");
let imgsrc = $(this).attr('src');
if (imgsrc.indexOf(".mp4") >0) {
console.log("want to replace");
$(this).parent().prepend('<video width="320" height="600" controls><source src="'+imgsrc+'" type="video/mp4"></video>');
$(this).remove();
}
});
它将 img
元素替换为 video
元素。
我使用 parent().prepend()
只是因为 replaceWith()
在这里不起作用。
仍然缺少一些修复来正确放置它,但它有效。