2

Youtube推奨の方法でコードを埋め込んだのですが、フルスクリーン機能が全く動作しませんでした。それで、mozallowfullscreen、webkitallowfullscreenなどを追加しようとしましたが、まだうまくいきません。

<iframe src="http://www.youtube.com/v/16N8Zhhhins?rel=0&hl=en&fs=1&autoplay=1" frameborder="0" width="100%" height="100%" id="listing_detail_youtube" mozallowfullscreen webkitallowfullscreen allowfullscreen="1"></iframe>

それが役立つ場合..最初のdoctypeなどは次のとおりです。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" style="overflow-x: hidden">
<head>

それが役立つ場合は、そのiFrameのCSS...

#listing_detail_youtube {
    width:100%;
    height:100%;
    margin:0px;
    padding:0px;
}

しかし。ビデオ iframe の URL だけをコピーして Firefox や Chrome などで開くと、まだ全画面表示が機能しないため、問題は<iframe>タグ内のどこかにあると思われます。

4

2 に答える 2

3
<iframe src="https://www.youtube.com/embed/1gI_HGDgG7c" allowfullscreen="" height="315" width="460"></iframe>

https://www.youtube.com/embed/-video_id-を使用

于 2015-07-30T20:54:16.633 に答える
-1

iframe の代わりに html5 の新しい埋め込みコマンドを使用して、この問題を解決しました。例として、次のページを確認してください。

http://www.flexxifinger.com/videoemb.php

お役に立てれば...

于 2013-11-15T22:23:13.990 に答える