Using jquery to dynamically load Vimeo videos

前端 未结 4 1335
我在风中等你
我在风中等你 2021-02-06 17:39

I would like to create a function that would allow me to embed my Vimeo videos on my website and run it like a YouTube playlist i.e. when a video link is clicked, rather than re

4条回答
  •  盖世英雄少女心
    2021-02-06 18:23

    Here you go.

    $.getJSON('http://www.vimeo.com/api/oembed.json?url=' + encodeURIComponent('http://vimeo.com/7100569') + '&width=300&callback=?', function(data){
            $('#some_video_container').html(data.html);
    });
    

提交回复
热议问题