Posted in Javascript onMarch 10, 2014
1、用JS定义一个图片数组,里面存放你想要随机展示的图片
ar imgArr=["https://3water.com/logo_cn.png", "https://3water.com/baidu_sylogo1.gif", "https://3water.com/news/uploadImg/20120111/20120111081906_79.jpg", "https://3water.com/news/uploadImg/20120111/20120111081906_76.jpg"];
上面的图片请大家换成自己的。
2、用JS产生一个随机数,当然这个随机数从0开始到imgArr.length-1结束
var index =parseInt(Math.random()*(imgArr.length-1));
这样我们就得到当前随机产生的图片
var currentImage=imgArr[index];
3、既然随机产生了一张背景图,那就用JS把这个图片作为背景图吧。
document.getElementById("BackgroundArea").style.backgroundImage="url("+currentImage+")";
由于这是一个demo,所以我在页面上定义了一个id为BackgroundArea的div,同时也是为这个div设置随机背景的。
<div id="BackgroundArea"> </div>
使用js操作css实现js改变背景图片示例
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@