用HTML语言编写一个程序

来源:百度知道 编辑:UC知道 时间:2024/05/25 13:20:52
用HTML语言编写一个程序,实现一个自下而上的滚动字幕(跑马灯)效果,要求跑马灯显示区域为100*80像素,并请以你的创意设定其它各项属性至少两项。

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: absolute;top: -50;color: #000000;font-family:宋体;font-size:9pt;">
<p>
谢谢您的使用!
</p></div>
<script language="JavaScript">
&