1
get user timeでCSSを変更したい。時間が今06:00〜12:00の場合、モーニングスタイルを取得します。時間12:00〜18:00午後のスタイルを取得します。時間18:00〜06:00夜のスタイルを取得します。そうでない場合は、通常のスタイルを取得します。Get Time Javascriptを使用してスタイルを変更するCSS
function morning() {
document.getElementsByTagName('BODY')[0].style.backgroundColor = "#fcfcfc";
document.getElementsByTagName('BODY')[0].style.color = "#505050";
}
function afternoon() {
document.getElementsByTagName('BODY')[0].style.backgroundColor = "gainsboro";
document.getElementsByTagName('BODY')[0].style.color = "black";
}
function night() {
document.getElementsByTagName('BODY')[0].style.backgroundColor = "#1b1b1b";
document.getElementsByTagName('BODY')[0].style.color = "#fff";
}
function normal() {
document.getElementsByTagName('BODY')[0].style.backgroundColor = "#fff";
document.getElementsByTagName('BODY')[0].style.color = "#1b1b1b";
}
[JavaScriptで現在の日付と時刻を取得する]の可能な複製(http://stackoverflow.com/questions/10211145/getting-current-date-and-time-in-javascript) –