1. ホーム
  2. jquery

[解決済み] JWplayer 再生クリックでフルスクリーン表示

2022-02-12 18:30:30

質問

ユーザーが再生ボタンをクリックすると同時に、JWplayerをフルスクリーンにするにはどうすればよいですか?私は彼らのサポートでこれに関連する何かを見つけることができませんでした。

解決方法は?

HTML5モードでしか動作しません。

<!DOCTYPE html>
<html>
<head>
    <title>Full Screen</title>
</head>
<body>
    <script src="http://p.jwpcdn.com/6/12/jwplayer.js" type="text/javascript"></script>
    <div id="player"></div>
    <script type="text/javascript" language="javascript">
    jwplayer("player").setup({
        file: "http://content.jwplatform.com/videos/C4lp6Dtd-el5vTWpr.mp4",
        image: "http://content.bitsontherun.com/thumbs/i8oQD9zd-640.jpg",
        primary: 'html5',
        width: 640,
        height: 360
    });
    jwplayer().onDisplayClick(function() { jwplayer().setFullscreen(true); });
    </script>
</body>
</html>