求每隔几秒定时淡入淡出的切换body背景的js特效
展开全部
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title> changeBodyCss </title>
<script src="jquery-1.7.2.min.js"></script>
<script>
/**
//jQuery code
$(function(){
var i = 0;
setInterval(function(){
i % 2 == 0 ? $('body').css('backgroundColor','red') : $('body').css('backgroundColor','blue');
i++;
},2000);
})
*/
//js code
var i = 0;
window.onload = function () {
setInterval(function(){
i % 2 == 0 ? document.body.style.backgroundColor = 'red' : document.body.style.backgroundColor = 'green';
i++;
},2000);
}
</script>
</head>
<body>
</body>
</html>
<html>
<head>
<title> changeBodyCss </title>
<script src="jquery-1.7.2.min.js"></script>
<script>
/**
//jQuery code
$(function(){
var i = 0;
setInterval(function(){
i % 2 == 0 ? $('body').css('backgroundColor','red') : $('body').css('backgroundColor','blue');
i++;
},2000);
})
*/
//js code
var i = 0;
window.onload = function () {
setInterval(function(){
i % 2 == 0 ? document.body.style.backgroundColor = 'red' : document.body.style.backgroundColor = 'green';
i++;
},2000);
}
</script>
</head>
<body>
</body>
</html>
更多追问追答
追问
不好意思,我问的是定时自动淡入淡出切换网页背景图片的js特效 不是背景颜色的切换
追答
背景图跟背景颜色只是属性的问题,不是一样的?
$('body').css('backgroundImage','url("XXX.JPG")');
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询