سلام دوستان یک کدی هست هست که پیام خوش امد گویی میده و می تونی براش ساعت تنظیم کنی که در چه ساعتی چه متنی رو نمایش بده.
حالا من میخوام این کد جوری تغییرداده بشه که من تو هدر ازش استفاده کنم یعنی در طول شبانه روز هدر تغییر کنه در ساعاتی که براش مشخص میشه
این کد متنیشه که برای خوش امد گویی استفاده میشهکد HTML:<script language="javascript">
function process(){}
today = new Date()
if((today.getHours() < 12) && (today.getHours() >= 6))
{ document.write("<font color=#60befd>1</font>")}
if((today.getHours() >= 12) && (today.getHours() < 18))
{ document.write("<font color=#8acf1d>2</font>")}
if((today.getHours() >= 18) && (today.getHours() <= 23))
{ document.write("<font color=#ff9f08>3</font>")}
if((today.getHours() >= 0) && (today.getHours() < 4))
{ document.write("<font color=#878787>4</font>")}
if((today.getHours() >= 4) && (today.getHours() <= 6))
{ document.write("<font color=#d7d7d7>5</font>")}
</script>
- - - Updated - - -
up..............