我正在使用Jwplayer播放我的视频。 所以我用JS小提琴来测试JWplayer API
我按照jsfiddle中的指示包含了JS文件。视频工作正常,但我想让播放器控制以外的一个按钮暂停/播放视频。
但它似乎没有用 我无法理解这个问题
在这里帮助我
<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/`
答案 0 :(得分:1)
谢谢
我是jsfiddle的新手
我不确定为什么但是JS部分的功能不起作用
所以我使用脚本标记将它们放在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/**
感谢您的帮助.. :)
答案 1 :(得分:0)
我只是去了两个jsfille链接,他们都适合我吗?