一般要写程序的话分为客户端代码和服务器代码。
html5客户端代码+php服务器后端代码就可以写应用程序了
不知道你要的时间段是怎么分的,那我就根据我划分的时间段:<head>
<meta http-equiv="Content-Type" content="text/htmlcharset=gb2312" />
<title>时间段提示</title>
<script>
var date=new Date()
var h=date.getHours()//获取当前时间
if(h>=0&&h<12){
alert('早上好!')
}else if(h>=12 &&h<18){
alert('下午好!')
}else if(h>=18 &&h<=24){
alert('晚上好!')
}
</script>
</head>
希望对你有用。
html能是语言吗???用javascript吧!!!
<script language="JavaScript">
<!--
done = 0
step = 4
function anim(yp,yk)
{
if(document.layers) document.layers["napis"].top=yp
else document.all["napis"].style.top=yp
if(yp>yk) step = -4
if(yp<60) step = 4
setTimeout('anim('+(yp+step)+','+yk+')', 35)
}
function start()
{
if(done) return
done = 1
if(navigator.appName=="Netscape") {
document.napis.left=innerWidth/2 - 145
anim(60,innerHeight - 60)
}
else {
napis.style.left=11
anim(60,document.body.offsetHeight - 60)
}
}
//-->
</script>
<div id="napis" style="position: absolutetop: -50color: #000000font-family:宋体font-size:9pt">
<p>
谢谢您的使用!
</p></div>
<script language="JavaScript">
<!--
setTimeout('start()',10)
//-->
</script>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)