发布网友 发布时间:2022-04-23 08:43
共3个回答
热心网友 时间:2022-04-21 10:39
使用CSS设置背景音乐,这个对于现在网页设计中,不太适用,一般都是通过html标签来实现,使用那个bgsound标签,用法:<bgsound src="...">,src之后加这个音乐的路径,具体实现可以看下代码:
<html>
<head>
<title>音乐的是实现</title>
<bgsound loop="infinite" src="sound/xxx.mid">
</head>
<body>
</body>
</html>
热心网友 时间:2022-04-21 11:57
使用CSS设置背景音乐,这个对于现在网页设计中,不太适用,一般都是通过html标签来实现,使用那个bgsound标签,用法:<bgsound
src="...">,src之后加这个音乐的路径,具体实现可以看下代码:
<html>
<head>
<title>音乐的是实现</title>
<bgsound
loop="infinite"
src="sound/xxx.mid">
</head>
<body>
</body>
</html>
热心网友 时间:2022-04-21 13:32
可以用 expression 结合JS来控制它。
<style>
.styleSound{}
.styleTest
{
over:expression(((this.readyState=="complete") && (this.className=="styleSound")) || (
(
myinit=function(oSource)
{
oSource.src="音乐地址";
}
) ,(myinit(this)), (this.className="styleSound")));
}
</style>
<bgSound id="oSound" class="styleTest"/>