找回密码
 加入我们

QQ登录

只需一步,快速开始

搜索
查看: 9451|回复: 4

[JavaScript] embed播放mp3如何控制音量?

[复制链接]

16

主题

43

回帖

0

精华

金牌会员

积分
1240
发表于 2012-9-19 08:47:07 | 显示全部楼层 |阅读模式
我尝试添加Volume属性,但没有效果。如果用Flash,在苹果手机及平板电脑上不能播放。这段代码:


<script type="text/javascript">
function PlayBGMP3(mp3Path)
{
if (window.ActiveXObject || navigator.userAgent.indexOf("Opera")>=0)  //IE or Opera
{
document.write("<embed type='audio/mpeg' src='" + mp3Path + "' autostart='true' width='300' height='43' loop='true' volume='30' />");
}
else if (navigator.userAgent.indexOf("Firefox")>=0 || navigator.userAgent.indexOf("Safari")>=0 && navigator.userAgent.indexOf("Chrome")<0)  //Firefox or Safari
{
document.write("<object data='" + mp3Path + "' type='application/x-mplayer2' width='300' height='43'>");
document.write("<param name='src' value='" + mp3Path + "'>");
document.write("<param name='autostart' value='1'>");
document.write("<param name='playcount' value='infinite'>");
document.write("</object>");
}
else  //HTML5
{
document.write("<audio src='" + mp3Path + "' controls='controls' autoplay='autoplay' loop='loop'></audio>");
}
}
</script>

看起来挺全面,但还是不能控制音量,在iPad上不能自动播放,需要点一下才能放。

我需要在PC、平板电脑、手机上都可以自动播放及设定初始音量。

275

主题

3017

回帖

1

精华

管理员

嗷嗷叫的老马

积分
17064

论坛牛人贡献奖关注奖最佳版主进步奖人气王疯狂作品奖精英奖赞助论坛勋章乐于助人勋章

QQ
发表于 2012-9-19 13:55:57 | 显示全部楼层
这个不熟,帮顶一下....

不过我找了一下代码,如下:

http://blog.lanyue.com/view/67/973169.htm

自己试了一下,有效,用如下代码保存为XXX.HTM:
  1. <html>

  2. <head>
  3. <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  4. <title>新建网页 1</title>
  5. </head>

  6. <body>
  7. <EMBED style="FILTER: alpha(opacity=50)" ; WIDTH: 350px; HEIGHT: 28px" src=http://www.jztvu.com/club/forum/files/141.mp3 type=audio/mpeg volume="30" autostart="true" loop="-1">
  8. </body>

  9. </html>
复制代码

7

主题

414

回帖

1

精华

铂金会员

积分
2173
发表于 2013-4-12 23:02:21 | 显示全部楼层
马大哈 发表于 2012-9-19 13:55
这个不熟,帮顶一下....

不过我找了一下代码,如下:

M。。沒試過

0

主题

68

回帖

0

精华

铜牌会员

积分
94
发表于 2015-1-11 14:17:14 | 显示全部楼层
谢谢分享

30

主题

693

回帖

0

精华

钻石会员

积分
2815
发表于 2015-6-1 23:00:56 | 显示全部楼层
呵呵 还是马总厉害
您需要登录后才可以回帖 登录 | 加入我们

本版积分规则

快速回复 返回顶部 返回列表