Why is my fancybox plugin not working for my youtube link?

℡╲_俬逩灬. 提交于 2019-12-12 02:27:18

问题


I cannot figure out why it isn't loading, it seems the same as fancybox's youtube link on their demo homepage. Plus, all the other fancyboxes on the page work. It's here and the one that isn't working is everybody's smoking video.

Here is my html:

<li class="portfolio-tn">
   <a class="fancybox" title="A video I made whilst I was giving up smoking. Unfortunately the video tape reel got damaged and the film quality isn't great. " href="http://www.youtube.com/embed/NXzSX5Cbebw">
       <img alt="thumbnail of Everybody's Smoking Video" src="images/assets/other_stuff/smokingvideo_thumbnail.png">
  </a>
</li>

回答1:


You will need to use an iframe element to embed video from a different domain.

The fancybox docs say that you can achieve this using one of two ways:

<a href="http://www.example?iframe">This goes to iframe</a>

or

<a class="iframe" href="http://www.example">This goes to iframe</a>



回答2:


for fancybox 2 and video you will need to add

<a class="fancybox-media" href="http://www.youtube.com/watch?v=opj24KnzrWo">My Video</a>

for iframe

<a class="fancybox fancybox.iframe" href="http://osx86.transformnews.com/">My Iframe</a>

example



来源:https://stackoverflow.com/questions/7704225/why-is-my-fancybox-plugin-not-working-for-my-youtube-link

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!