html 图片自动播放代码

html 图片自动播放代码,第1张

你先试试这个代码(先用背景颜色来代码替):

<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页面,此时发现页面多了背景图片和背景音乐。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/6145091.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-03-16
下一篇 2023-03-16

发表评论

登录后才能评论

评论列表(0条)

保存