- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我对编码相当陌生(现在使用 html5 Ccs3 和 JavaScript 玩了大约 2 个月),我正在尝试让 Jplayer CirclePlayer 使用他们的演示文件“demo-05.htm”播放 mp3 格式。
这是代码片段,我已经根据在其他帖子中找到的信息进行了更改,但我仍然无法使 CirclePlayer 在 IE10 或当前版本的 Google Chrome 中工作,尽管其他 Jplayer 皮肤可以播放 mp3 .
我已添加错误警报,但上次尝试时没有收到任何警报。
如果有人能帮助我解决这个问题,我将不胜感激,因为我对这些编码东西非常陌生,而且我不断遇到奇怪的异常情况。
如果我能让这个工作,那么我需要弄清楚如何使用 CirclePlayer 在同一页面上播放多个 mp3 文件!
这是我迄今为止一直在使用的代码。所有媒体文件都与 htm 文件位于同一文件夹级别,JS JS 和 Skin 文件夹与 htm 文件位于同一级别,因为我在测试播放器时正在使用演示文件夹。
<script type="text/javascript">
//<![CDATA[
$(document).ready(function(){
var myCirclePlayer = new CirclePlayer("#jquery_jplayer_1",
{
mp3: "001.mp3"
m4a: "Miaow-07-Bubble.m4a",
oga: "Miaow-07-Bubble.ogg"
}, {
supplied: "mp3", "m4a", "oga",
cssSelectorAncestor: "#cp_container_1",
swfPath: "js",
wmode: "window",
keyEnabled: true
errorAlerts: true,
warningAlerts: true
});
});
//]]>
</script>
非常感谢您为新手提供的任何帮助!
我是乔迪
最佳答案
我按照以下建议让 Jplayer CirclePlayer 播放 mp3Su 在他对以下问题的回答中找到了我之前添加的所有额外代码行,试图让播放器正常工作。
jplayer-circle-player-not-playing-mp3-file //
$(document).ready(function()
{
var myCirclePlayer = new CirclePlayer("#jquery_jplayer_1",
{
mp3: "001.mp3"
}, {
supplied: "mp3",
cssSelectorAncestor: "#cp_container_1",
swfPath: "js",
wmode: "window"
});
});
//]]>
</script>
<小时/>
I removed the m4a: and oga: lines
I removed the keyEnabled: line
I removed the errorAlerts: line
I removed the warningAlerts: line
CirclePlayer 可以在 IE 10 和 Chrome 中播放音频。
关于javascript - 为什么 Jplayer CirclePlayer 不能播放 mp3,而其他 Jplayer 皮肤都可以?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18447756/
我想知道如何在网页上设置 jPlayer 的 CirclePlayer 的多个实例。一个将播放 .mp3 编码的 m3u 流,另一个将循环播放静态 .mp3 文件。 这是目前正在开发的网页:Linky
使用circle player 的css 文件,我将其修改为circle player 的一半大小。我所做的是将 css 中的值更改为一半大小。请参见下面的代码示例: .cp-container.sm
我对编码相当陌生(现在使用 html5 Ccs3 和 JavaScript 玩了大约 2 个月),我正在尝试让 Jplayer CirclePlayer 使用他们的演示文件“demo-05.htm”播
我是一名优秀的程序员,十分优秀!