1

動画の再生に Jwplayer を使用しています。だから私はJSフィドルを使ってJWplayer APIをテストしていました

jsfiddle の指示に従って JS ファイルを含めました。ビデオは正常に動作しますが、ビデオを一時停止/再生するためのプレーヤー コントロール以外の 1 つのボタンを使用しようとしています。

しかし、それはうまくいかないようです私は問題を理解することができません

ここで私を助けて

<body>


   <div id='my-video'></div><br>
    <div id="content" style=" text-align: center;">
       <button name='play' id='play' value='play' onclick='play();'>Play</button>
        <button name='pause' id='pause' value='pause' onclick='pause();' style='display: none;'>Pause</button>
    </div>


</body>


<script>
       jwplayer('my-video').setup({
        file: 'http://content.bitsontherun.com/videos/lWMJeVvV-364767.mp4',
        width: '640',
        height: '360'
    });



    function play() {
        jwplayer().play();
        document.getElementById('play').style.display = 'none';
        document.getElementById('pause').style.display = 'inline-block';
    }
    function pause() {
        jwplayer().pause();
        document.getElementById('pause').style.display = 'none';
        document.getElementById('play').style.display = 'inline-block';
    }
</script>

ありがとうございました

 Here is the  [DEMO LINK][1]`http://jsfiddle.net/hiteshbhilai2010/f6ufe/17/`
4

2 に答える 2

1

ありがとう

私は本当にjsfiddleが初めてです

理由はわかりませんが、JS 部分の機能が動作していません

script タグを使用してそれらを html ページに配置し、現在は機能しています

 can some one tell why is that so ....i have included my link which is  not working link 

 http://jsfiddle.net/hiteshbhilai2010/f6ufe/17/

 this is my link for new code which is working
** http://jsfiddle.net/hiteshbhilai2010/f6ufe/30/**

手伝ってくれてありがとう ..:)

于 2013-05-16T07:39:00.723 に答える
0

私は両方のjsfilleリンクに行きましたが、どちらもうまくいきましたか?

于 2013-05-28T04:25:13.797 に答える