菜鸟教程小白 发表于 2022-12-12 19:59:59

javascript - 让 HTML5 YouTube 播放器适合 UIWebView


                                            <p><p>我过去(在 iOS 6 中)只能“告诉”YouTube 播放器应该拉伸(stretch)到什么宽度和高度,没有问题。</p>

<p>此代码之前在 iOS 6 中可以使用,但<strong>现在在 iOS 7 中根本无法使用</strong>。</p>

<p>但现在我必须将高度和宽度的值设置为<strong>比它自己的屏幕高得多(3 倍)</strong>,但这当然不是解决方案,因为设备的尺寸会有所不同。</strong> p>

<p>这是按下按钮时运行的代码</p>

<pre><code>NSString *player = @&#34;&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;&lt;style&gt;body{margin:0px 0px 0px 0px;}&lt;/style&gt;&lt;/head&gt;
&lt;body&gt;

&lt;div id=\&#34;player\&#34;&gt;&lt;/div&gt;

&lt;script&gt;   
var tag = document.createElement(&#39;script&#39;);
tag.src = \&#34;http://www.youtube.com/player_api\&#34;;
var firstScriptTag = document.getElementsByTagName(&#39;script&#39;);      
firstScriptTag.parentNode.insertBefore(tag, firstScriptTag);
var player;

function onYouTubePlayerAPIReady()
{
   player = new YT.Player(&#39;player&#39;, { width:&#39;%0.0fpx&#39;, height:&#39;%0.0fpx&#39;, videoId:&#39;%@&#39;,
   playerVars: {playsinline : 1, rel:0, showinfo:0}, events: { &#39;onReady&#39;: onPlayerReady, } });
}
   function onPlayerReady(event) { event.target.playVideo();
}
&lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;&#34;; //End of player creation string

//Then I create the html with the size of the screen
NSString *html = bounds].size.width , [ bounds].size.height , @&#34;5bCRDI1BESc&#34;];

//And then I load the html into the webview
resourceURL]];
</code></pre>

<p>由此生成的 HTML 如下</p>

<pre><code>&lt;html&gt;&lt;head&gt;&lt;style&gt;body{margin:0px 0px 0px 0px;}&lt;/style&gt;&lt;/head&gt;
&lt;body&gt;
&lt;iframe id=&#34;player&#34; frameborder=&#34;0&#34; allowfullscreen=&#34;1&#34; title=&#34;YouTube video player&#34; width=&#34;320px&#34; height=&#34;480px&#34; src=&#34;http://www.youtube.com/embed/5bCRDI1BESc?playsinline=1&amp;amp;rel=0&amp;amp;showinfo=0&amp;amp;enablejsapi=1&#34;&gt;&lt;/iframe&gt; &lt;script src=&#34;http://s.ytimg.com/yts/jsbin/www-widgetapi-vflvlw_TO.js&#34; async=&#34;&#34;&gt;&lt;/script&gt;&lt;script src=&#34;http://www.youtube.com/player_api&#34;&gt;&lt;/script&gt;&lt;script&gt; var tag = document.createElement(&#39;script&#39;); tag.src = &#34;http://www.youtube.com/player_api&#34;; var firstScriptTag = document.getElementsByTagName(&#39;script&#39;); firstScriptTag.parentNode.insertBefore(tag, firstScriptTag);
var player; function onYouTubePlayerAPIReady() {
player = new YT.Player(&#39;player&#39;, { width:&#39;320px&#39;, height:&#39;480px&#39;,
videoId:&#39;5bCRDI1BESc&#39;,
playerVars: {playsinline : 1, rel:0, showinfo:0},
events: { &#39;onReady&#39;: onPlayerReady, } });
}
function onPlayerReady(event) { event.target.playVideo(); } &lt;/script&gt;&lt;/body&gt;&lt;/html&gt;
</code></pre>

<p>但结果与 iOS 6 中的不一样,在 iOS 6 中,播放器填写到 whitespce (webview)。这是一张图片</p>

<p> <img src="https://imgur.com/jOqwwAY.png" alt="Player not filling out into space"/> </p>

<p>如果我将 HTML 的宽度和高度 <strong>加倍(屏幕尺寸!)</strong> 为 640 像素和 960 像素!?</p>

<p> <img src="https://imgur.com/VJyW0k8.png" alt="double the screen size not either filling out into space"/> </p>

<p><strong>有人知道 iOS 7 中的 YouTube API 或 Safari 浏览器发生了什么吗?</strong></p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>这是我当前的实现:</p>

<pre><code>let webView = UIWebView(...)

// get the ID of the video you want to play
let videoID = &#34;zN-GGeNPQEg&#34; // https://www.youtube.com/watch?v=zN-GGeNPQEg

// Replace the height and width of the player here to match your UIWebView&#39;sframe rect
let embededHTML = &#34;&lt;html&gt;&lt;body style=&#39;margin:0px;padding:0px;&#39;&gt;&lt;script type=&#39;text/javascript&#39; src=&#39;http://www.youtube.com/iframe_api&#39;&gt;&lt;/script&gt;&lt;script type=&#39;text/javascript&#39;&gt;function onYouTubeIframeAPIReady(){ytplayer=new YT.Player(&#39;playerId&#39;,{events:{onReady:onPlayerReady}})}function onPlayerReady(a){a.target.playVideo();}&lt;/script&gt;&lt;iframe id=&#39;playerId&#39; type=&#39;text/html&#39; width=&#39;\(self.view.frame.size.width)&#39; height=&#39;\(self.view.frame.size.height)&#39; src=&#39;http://www.youtube.com/embed/\(videoID)?enablejsapi=1&amp;rel=0&amp;playsinline=1&amp;autoplay=1&#39; frameborder=&#39;0&#39;&gt;&lt;/body&gt;&lt;/html&gt;&#34;

// Load your webView with the HTML we just set up
webView.loadHTMLString(embededHTML, baseURL: NSBundle.mainBundle().bundleURL)
</code></pre>

<p>这是在 <code>UIViewController</code> 内部,我将 ViewController 的 <code>view</code> 的框架作为播放器的宽度和高度传递。您应该相应地调整播放器的大小。</p></p>
                                   
                                                <p style="font-size: 20px;">关于javascript - 让 HTML5 YouTube 播放器适合 UIWebView,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/22283514/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/22283514/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: javascript - 让 HTML5 YouTube 播放器适合 UIWebView