Tag: dailymotion api

iOS设备上的Dailymotionembedded式播放器(HTML5)

我有一个使用Player API的Dailymotionembedded式播放器( http://www.dailymotion.com/doc/api/player.html )。 它适用于桌面和Android平板电脑。 但在iOS设备上,video只是无法启动。 我的代码如下: <!– This <div> tag will be replaced the <iframe> video player –> <div id="player"></div> <script> // This code loads the Dailymotion Javascript SDK asynchronously. (function() { var e = document.createElement('script'); e.async = true; e.src = document.location.protocol + '//api.dmcdn.net/all.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(e, s); }()); // This function […]