Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
MediaElement ビデオの再生時にフルスクリーンをトリガーしたいと思います。
$('video').on("play", function () { //fullscreen mode });
何か案は?ありがとう!
on 関数を使用するには、jquery バージョン 1.7 以降を使用していることを確認してください。次に、これは機能するはずです:
player = new MediaElementPlayer('video'); $('video').on("play", function() { player.enterFullScreen(); });