<html>
<head>
</head>
<body>
<div id="div1" style="width:100pxheight:100pxbackground:red">
</div>
<script>
var adiv=document.getElementById('div1')
var colors=['green','black','pink','blue','yellow','gray','red']
var i=0
setInterval(function()
{
if(i==colors.length)
{
i=0
}
adiv.style.backgroundColor=colors[i]
i++
},1000)
</script>
</body>
</html>
看能不能帮上什么。
<marquee direction="left"><img src="1.jpg">
<img src="2.jpg">
<img src="3.jpg">
</marquee>
DW中实现图片自动播放,就是marquee标签的运用
需要准备的材料分别有:电脑、浏览器、html编辑器。
1、首先,打开html编辑器,新建html文件,例如:index.html。
2、将index.html中的<body>标签的代码替换为:
<body style="background: url(image.jpg)">
<audio autoplay loop src="11704.mp3"></audio>
</body>
3、浏览器运行index.html页面,此时发现页面多了背景图片和背景音乐。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)