Change Background with CSS on particular date?

后端 未结 4 782
灰色年华
灰色年华 2021-01-14 01:40

Does anyone know how to change the background of a website automatically using CSS on specific dates? Like valentines, easter, xmas etc.

4条回答
  •  太阳男子
    2021-01-14 02:37

    var date = new Date(),
        day = date.getDate(),
        month = date.getMonth()+1;
    
    if (10 == month && 31 == day) {
        document.body.style.backgroundColor = "#FF9100";
    }
    

    Notice I added one (1) because the getMonth() method returns the month from 0 to 11 for the specified date, according to local time.

提交回复
热议问题