您无需为每个图像使用新的样式表。您只能通过javascript更改背景图片:
<html><head> <title></title></head><body></body><script type="text/javascript">var currentTime = new Date().getHours();if (7 <= currentTime && currentTime < 20) { if (document.body) { document.body.background = "http://itsnotch.com/tumblr/images/daytime_bg.jpg"; }}else { if (document.body) { document.body.background = "http://itsnotch.com/tumblr/images/nighttime_bg.jpg"; }}</script></html>编辑: 更新以显示页面内脚本的推荐位置。这已经过测试,可以在Firefox和Internet Explorer中使用。



