jPlayerコンポーネントとaudioラベルおよびembedラベル
5685 ワード
最近bootstrapでページを作っていますが、PC側とモバイル側で展示できるので、自動アラーム機能があり、オーディオを再生する必要があります.ネット上でjPlayer-2.9..2をダウンロードしたのはいい感じです.このプラグインはほとんどのブラウザをサポートしていますが、IE 8以下はサポートされていません.仕方がありません.例を見てみましょう.
この例では自動再生(jPlayer(「プレイ」)を手動で再生したい.方法は削除すればよい)が、PC側だけでは、移動側では以下を手でクリックしなければ再生できない.これはモバイルデバイスのセキュリティメカニズムによるものであり、これは克服できない.しかし、このコンポーネントはモバイルデバイスに最も近いコンポーネントです.要するに、モバイルデバイスで自動的に音楽を再生できるコンポーネントはまだありません.
html 5のaudioタグを言う人もいるかもしれませんが、このタグはIE 9以上しかサポートできず、モバイルデバイス側では音楽を再生できません.
≪インスタンス|Instance|emdw≫
みずからやってみる
Internet Explorer
Internet Explorer 8ではaudio要素はサポートされていません.IE 9では、audio要素のサポートが提供される.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<!-- Website Design By: www.happyworm.com -->
<title>Demo : jPlayer as an audio player</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link href="${rootPath}/webpad/js/jPlayer-2.9.2/dist/skin/blue.monday/css/jplayer.blue.monday.min.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="${rootPath}/webpad/js/jPlayer-2.9.2/lib/jquery.min.js"></script>
<script type="text/javascript" src="${rootPath}/webpad/js/jPlayer-2.9.2/dist/jplayer/jquery.jplayer.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#jquery_jplayer_1").jPlayer({
ready: function (event) {
$(this).jPlayer("setMedia", {
title: "Bubble",
// mp3: "${rootPath}/webpad/song.mp3",
// ogg: "${rootPath}/webpad/song.ogg",
// wav: "${rootPath}/webpad/song.wav",
m4a: "http://jplayer.org/audio/m4a/Miaow-07-Bubble.m4a",
oga: "http://jplayer.org/audio/ogg/Miaow-07-Bubble.ogg"
}).jPlayer("play");//
},
swfPath: "${rootPath}/webpad/js/jPlayer-2.9.2/dist/jplayer",
supplied: "m4a,oga",
wmode: "window",
useStateClassSkin: true,
autoBlur: false,
smoothPlayBar: true,
keyEnabled: true,
remainingDuration: true,
toggleDuration: true
});
});
</script>
</head>
<body>
<div id="jquery_jplayer_1" class="jp-jplayer"></div>
<div id="jp_container_1" class="jp-audio" role="application" aria-label="media player">
<div class="jp-type-single">
<div class="jp-gui jp-interface">
<div class="jp-controls">
<button class="jp-play" role="button" tabindex="0">play</button>
<button class="jp-stop" role="button" tabindex="0">stop</button>
</div>
<div class="jp-progress">
<div class="jp-seek-bar">
<div class="jp-play-bar"></div>
</div>
</div>
<div class="jp-volume-controls">
<button class="jp-mute" role="button" tabindex="0">mute</button>
<button class="jp-volume-max" role="button" tabindex="0">max volume</button>
<div class="jp-volume-bar">
<div class="jp-volume-bar-value"></div>
</div>
</div>
<div class="jp-time-holder">
<div class="jp-current-time" role="timer" aria-label="time"> </div>
<div class="jp-duration" role="timer" aria-label="duration"> </div>
<div class="jp-toggles">
<button class="jp-repeat" role="button" tabindex="0">repeat</button>
</div>
</div>
</div>
<div class="jp-details">
<div class="jp-title" aria-label="title"> </div>
</div>
<div class="jp-no-solution">
<span>Update Required</span>
To play the media you will need to either update your browser to a recent version or update your <a href="http://get.adobe.com/flashplayer/" target="_blank">Flash plugin</a>.
</div>
</div>
</div>
</body>
</html>
この例では自動再生(jPlayer(「プレイ」)を手動で再生したい.方法は削除すればよい)が、PC側だけでは、移動側では以下を手でクリックしなければ再生できない.これはモバイルデバイスのセキュリティメカニズムによるものであり、これは克服できない.しかし、このコンポーネントはモバイルデバイスに最も近いコンポーネントです.要するに、モバイルデバイスで自動的に音楽を再生できるコンポーネントはまだありません.
html 5のaudioタグを言う人もいるかもしれませんが、このタグはIE 9以上しかサポートできず、モバイルデバイス側では音楽を再生できません.
≪インスタンス|Instance|emdw≫
<audio controls="controls">
<source src="song.ogg" type="audio/ogg">
<source src="song.mp3" type="audio/mpeg">
Your browser does not support the audio tag.
</audio>
みずからやってみる
Internet Explorer
Internet Explorer 8ではaudio要素はサポートされていません.IE 9では、audio要素のサポートが提供される.