What is a good way to embed Vimeo videos in HTML5 format?
问题 I don't want to embed Vimeo videos in Flash format. How do I embed them in HTML5 format? 回答1: They actually enable HTML5 through cookies, so I don't think you can link directly to the HTML5 version. Here's the JS code they use to switch between Flash and HTML5: function toggle_html5_player(obj, on) { if (on) { setCookie("html_player", 1, 365); } else { setCookie("html_player", 0, 365); } reload_page(); } Edit: Also on embedding, the official blog post states: It only works on Vimeo.com right