您现在的位置是:首页 > 教程 > 帝国CMS教程帝国CMS教程
帝国CMS会员中心新消息声音提示的方法
千兰2023-05-18 18:27:24帝国CMS教程已有人查阅
导读会员中心 新消息声音提示方法:1. 在 /e/member/cp /index.php 文件中找到说明:电脑端使用正常,因为移动端自动播放被一些浏览器屏蔽
会员中心 新消息声音提示方法:
1. 在 /e/member/cp /index.php 文件中找到
//是否有短消息
$havemsg="无";
if($user[havemsg])
{
$havemsg="<a href='".$public_r['newsurl']."e/member/msg' target=_blank><font color=red>您有新消息</font></a>";
}
在
$havemsg="<a href='".$public_r['newsurl']."e/member/msg' target=_blank><font color=red>您有新消息</font></a>";
这行下加上
$s="/e/member/cp/duanxin.mp3"; // mp3文件地址根据自己的mp3文件地址写
2. 在/e/template/member/cp.php 中合适位置(比如文件最后的</body>前)加上
<audio style="display:none; height:0" preload="auto" id="bgmusic" autoplay="autoplay" src="<?=$s?>"></audio>
说明:电脑端使用正常,因为移动端自动播放被一些浏览器屏蔽,所以像qq浏览器等能正常使用,像uc、360浏览器等不能自动播放。
本文标签:
很赞哦! ()
上一篇:帝国CMS获取当前ID的方法
相关文章
随机图文
-
帝国二次开发JS调用登陆模板调用会员头像的方法
打开/e/data/template/loginiframetemp.txt修改成,在JS调用登陆模板使用,同理,还可以调用其他任何会员相关的字段 -
帝国CMS上一篇下一篇标题链接字数截取调用灵动标签sql
一: 动态调用上一篇下一篇链接<a href="[!--news.url--]e/public/GotoNext?classid=[!--classid--]&id=[!--id--]&enews=pre">上一篇</a> 动态调用上一篇链 -
帝国CMS教程自动定时刷新首页的方法
在 /e/ 建立文件夹 htmlindex 并设置 777权限,将下面代码保存在 /e/htmlindex/index_html.php,修改刷新时间,将文件中1200改为你想要的时间,单位为秒。 -
帝国CMS首页调用最新会员和活跃会员及积分排行的方法
代码如下:最新会员SQL:select a.userid,a.username,b.userpic as titlepic from phome_enewsmember as a LEFT JOIN phome_enewsmemberadd as b ON a.userid=b.userid order b
留言与评论 (共有 条评论) |