我有很长的视频列表,并且有很多iframe会降低所有浏览器的速度。我决定只使用他们的截图。通过单击屏幕截图,将显示iframe并隐藏screeshot。我只是将iframe设置为默认隐藏,但我希望iframe动态添加,以便iframe不会用HTML代码编写,这是我的代码:
<div class="youtube">
<div class="description">Desciption 1</div>
<div class="youtube_thumb">
<img src="http://img.youtube.com/vi/mqf6K6qYOWg/0.jpg" style="width:325px;border:0;" />
<iframe width="325" height="250" src="http://www.youtube.com/embed/mqf6K6qYOWg" frameborder="0" allowfullscreen></iframe>
</div>
</div>
<div class="youtube">
<div class="description">Desciption 2</div>
<div class="youtube_thumb">
<img src="http://img.youtube.com/vi/GIc14HyiLNs/0.jpg" style="width:325px;border:0;" />
<iframe width="325" height="250" src="http://www.youtube.com/embed/GIc14HyiLNs" frameborder="0" allowfullscreen></iframe>
</div>
</div>
依旧......
和javascript:
$('.youtube_thumb > img').click(function(){
var $img = $(this);
$img.hide();
$img.next().show();
});
和风格:
.youtube_thumb iframe { display:none; }
.youtube_thumb:hover { cursor:pointer; }
正如您所看到并且可能知道的,我获得的屏幕截图直接来自youtube,因此屏幕截图链接:mqf6K6qYOWg/0.jpg
和框架链接:/embed/mqf6K6qYOWg
是相同的,我认为可以通过使用屏幕截图的链接,使用相同的链接附加iframe。我怎么能这样做?
答案 0 :(得分:2)
$('.youtube_thumb > img').click(function(){
var parts = this.src.split("/"); //grab the url and split it into parts
var id = parts[parts.length-2]; //grab the second to last piece
$('<iframe width="325" height="250" src="http://www.youtube.com/embed/' + id + '" frameborder="0" allowfullscreen></iframe>').insertAfter(this); //append the iframe
$(this).hide(); // .remove();
});
答案 1 :(得分:1)
将图像用
包装成标签 <a class="wrap" href="http://www.youtube.com/embed/mqf6K6qYOWg"><img /></a>
jquery的
$('.wrap').on('click', function() {
var src = $(this).attr('href');
$(this).before('<iframe width="325" height="250" src="'+src+'" frameborder="0" allowfullscreen></iframe>');
$(this).remove();
return false;
)}