我有一个关于加载基于一天中的时间或日期更改 CSS 的 JavaScript 的问题。
问题:如何缓存图像以使它们不会从一个页面加载到另一个页面?该脚本工作正常,并根据一天中的时间将类添加到正文和标题中。但是,当用户单击网站的下一页时,它会重新加载相同的 CSS 类并导致网站在加载 CSS 之前闪烁为白色。
我已将脚本放在页面底部和标题中。然而,它仍然在加载脚本的每个页面上闪烁。每次用户从一个页面转到另一个页面时,是否有办法阻止脚本加载?
这是Js代码。
function TimeOfDaySiteChange() {
var d = new Date();
var n = d.getHours();
if (n < 5) {
// midnight
night();
} else if (n > 16 && n < 20) {
// If time is between 5PM – 8PM sunset theme to 'body'
dusk();
} else if (n > 19) {
// If time is 8PM
night();
} else if (n > 8) {
// If time is 9AM
daytime();
} else {
// Else use 'dawn' theme
dawn();
}
}
function dawn() {
jQuery('body').addClass('sunrise_bg');
jQuery('#header_masthead').addClass('sunrise_masthead_bg');
}
function daytime() {
jQuery('body').addClass('day_bg');
jQuery('#header_masthead').addClass('day_masthead_bg');
}
function dusk() {
jQuery('body').addClass('sunset_bg');
jQuery('#header_masthead').addClass('sunset_masthead_bg');
}
function night() {
jQuery('body').addClass('night_bg');
jQuery('#header_masthead').addClass('night_masthead_bg');
}
function init() {
TimeOfDaySiteChange();
}
window.onload = init;
我也试过没有window.onload