how to popup jquery window to play vimeo/youtube video?

 ̄綄美尐妖づ 提交于 2019-12-08 12:35:44

问题


I'm building the landing page for an iPhone app, and i would like to add a video modal window to our page. It would be very similar to: https://path.com/ .

I found this page "Popup Jquery window to play youtube" but i don't know how to decrease the size of the video (I don't want it playing full screen).


回答1:


It's easy to use something like colorbox
You need to add JQuery followed by colorbox scripts to your html page, then

<a href="your_youtube_link" class="video_layer">play me</a>
<script>
$('.video_layer').colorbox({iframe:true});
</script>

Get the youtube link from the embedding tab below the video on youtube, you can set there the width and height of the frame.



来源:https://stackoverflow.com/questions/10916063/how-to-popup-jquery-window-to-play-vimeo-youtube-video

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