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&rel=0" frameborder="0" allowfullscreen></iframe>');
details.show();
}