Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <body>
- <script type="text/javascript">
- var currentTime = new Date().getHours();
- if (7 <= currentTime && currentTime < 20) {
- if (document.body) {
- document.body.background = "day.png";
- }
- }
- else {
- if (document.body) {
- document.body.background = "night.png";
- }
- }
- </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement