我有一个带有一堆缩略图的页面,当点击时会在模态中打开嵌入的youtube视频。
这是html:
<li>
<div class="videoLd">
<a class="video-link" title="Video Title" href="#video" role="button" data-toggle="modal" data-id="youtubeid">
<img class="responsive-imamge" src="//www.mysite.com/video.jpg" alt="" >
</a>
<h4>Video Title</h4>
<p>Video Description</p>
<div id="video" class="modal hide fade in" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">
<img src="www.mysite.com/close-modal.png" alt=" ">
</button>
<div class="modal-body">
<div class="video-wrapper">
<!-- on click the iframe will append here -->
</div>
</div>
</div>
</div>
</li>
我以这种方式显示了5个视频缩略图的列表。这确实减慢了我的页面加载时间。在添加视频之前,页面加载速度比我网站上的平均速度快61%。现在它慢了21%。
有没有办法优化这些视频,以便只在点击视频缩略图时加载?
修改
以为我会更新这个并分享我现在实际使用的内容。我没有使用lazyYT插件,而是创建了一个简单的点击功能,将iframe附加到容器div。视频链接具有包含youTube视频ID的data-id属性。
$('.video-link').on('click', function () {
var youTubeID = $(this).data('id');
var code="<iframe width='1280' height='720' src='//www.youtube.com/embed/" + youTubeID + "?rel=0&autoplay=1' frameborder='0' allowfullscreen=''></iframe>";
$(this).parent().find('.video-wrapper').append(code);
});
答案 0 :(得分:1)
您是否考虑过延迟加载Youtube视频?
我自己还没有使用它,但是这个jQuery plugin会延迟加载Youtube视频。这是another plugin,它会延迟加载,但不幸的是,它们似乎都需要jQuery,除非你的网站已经在使用它,否则它不是理想的。
SO上还有another answer涵盖了这个问题,可能会为您提供更多见解。