0

編集:うわー、「ファイル」と「flashplayer」の設定を最初に設定セクションに配置することで解決しました。これらの2つのパラメーターは、構成セクションの最初にある必要があると思います。

したがって、これは機能します(クロスドメインのもののため、このようにlongtailvideo.comからファイルをロードすることはできません。テストするには、独自のローカルファイルを使用してください)

<!DOCTYPE html>
<html lang="en">
<head>
<script type="text/javascript" src="jwplayer.js"></script>
</head>
<body>
<div id="vs" style="width:300px;height:250px;"></div>
<a href="javascript:void(0);" onclick="jwplayer().setMute();">Toggle the audio</a>
</body>
</html>

<script type="text/javascript">
jwplayer("vs").setup({
file: "http://content.longtailvideo.com/videos/flvplayer.flv",
flashplayer: "player.swf",
autostart:true,
controlbar: "none",
icons: "false",
repeat:"always",
stretching:"exactfit",
width:300,
height:250,
mute:"true"
});
</script>

ミュートトグルを機能させることができません。ロングテールのドキュメント(http://www.longtailvideo.com/support/jw-player/jw-player-for-flash-v5/16022/controlling-the-player-using-javascript)によると、私がしなければならないのは作ることだけですオンクリックのリンク。動作しません。JQueryで.clickを試しても無駄になりました。MP4ファイルを使用して、コードをフラッシュからHTML5ビデオにフォールバックします。

これは、ページに含まれているJQueryでも機能しません

<script type="text/javascript">
$(document).ready(function(){
$('#mutetoggle').click(function(){
jwplayer().setMute();
});
});
</script>

埋め込み用のJWjavascriptを備えたJWプレーヤー:

<!DOCTYPE html>
<html lang="en">
<head>
<script type="text/javascript" src="jwplayer.js"></script>
</head>
<body>
<div id="vs" style="width:300px;height:250px;"></div>
<a href="#" id="mutetoggle" onclick="jwplayer().setMute();">Toggle the audio</a>
</body>
</html>

<script type="text/javascript">
jwplayer("vs").setup({
autostart:true,
controlbar: "none",
icons: "false",
repeat:"always",
stretching:"exactfit",
file: "http://content.longtailvideo.com/videos/flvplayer.flv",
flashplayer: "player.swf",
volume:50,
width:300,
height:250,
mute:"true"
});
</script>
4

1 に答える 1

2

ファイルとフラッシュプレーヤーのパラメーターは、構成セクションの最初にある必要があるようです。図に行きます。

<!DOCTYPE html>
<html lang="en">
<head>
<script type="text/javascript" src="jwplayer.js"></script>
</head>
<body>
<div id="vs" style="width:300px;height:250px;"></div>
<a href="javascript:void(0);" onclick="jwplayer().setMute();">Toggle the audio</a>
</body>
</html>

<script type="text/javascript">
jwplayer("vs").setup({
file: "http://content.longtailvideo.com/videos/flvplayer.flv",
flashplayer: "player.swf",
autostart:true,
controlbar: "none",
icons: "false",
repeat:"always",
stretching:"exactfit",
width:300,
height:250,
mute:"true"
});
</script>
于 2012-05-28T06:27:23.267 に答える