how to popup jquery window to play vimeo/youtube v

2019-06-14 12: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.