我为我的网站制作了一些不同的背景(在here中),我希望他们自动更改某些,例如圣诞节,万圣节等等。我可以手动更改它们,但这并不好玩。 :) 如果有人有任何帮助,那将是非常棒的。谢谢!
答案 0 :(得分:0)
尝试使用此脚本并根据需要更改日期
<script type="text/javascript">
/*<![CDATA[*/
var ToDay=new Date();
var Month=ToDay.getMonth();
var Date=ToDay.getDate();
var Image=false;
if (ToDay.getFullYear()==2015){
if (Month==0){ // January
if (Date>=20&&Date<=30){
Image='One.gif';
}
}
if (Month==1){ // Febuary
if (Date>=20&&Date<=25){
Image='Three.gif';
}
}
}
if (Image){
document.body.style.backgroundImage='url(imagefoldername/'+Image+')';
}
/*]]>*/
</script>