2

HTML5 埋め込みコードが埋め込まれた Vimeo または Youtube ビデオを Blackberry 6 デバイスで再生できないようです。スピナーが回転している状態で、ビデオはただそこに座っています。複数の Blackberry で確認しましたが、それらはすべて Vimeo の Web サイトと Youtube の Web サイト、および上記のコンテンツを埋め込んだ他の Web サイトで正常に動作します。

以下のYoutubeビデオのサンプルコード。Vimeo コードは同じですが、URL が異なります。

編集:これはブラウザ経由であり、ウェブ作品ではありません。

function(options) {


    var details = new Ext.Panel({

        autoRender: true,
        floating: true,
        modal: true,
        centered: true,
        scroll: false,
        hideOnMaskTap: true,
        dockedItems: [{

            xtype: 'toolbar',
            dock: 'top',
            title: '',
            items: [{

                text: 'Close',
                handler: function() {

                    details.update('');
                    details.hide('pop');    

                    }
                }]
        }],
        listeners: {
            deactivate: function (p) {
                p.destroy();
            }
        }
    }
    );

    details.update('<iframe class="youtube-player" type="text/html" src="http://www.youtube.com/embed/'+options.data.id+'?showinfo=0&amp;rel=0" frameborder="0" allowfullscreen></iframe>');
    details.show();

}
4

1 に答える 1

0

このように、 webworks構成ファイルのドメインへのアクセスを許可しましたか?

<access subdomains="true" uri="http://www.youtube.com"/>
<access subdomains="true" uri="http://www.vimeo.com"/>
于 2012-06-18T04:07:27.750 に答える