基本信息
源码名称:跑马灯 文字飞入
源码大小:0.74KB
文件格式:.html
开发语言:CSS
更新时间:2017-02-24
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
文字飞入跑马灯
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8">
<title></title>
</head>
<body>
<marquee direction=right behavior="slide" width=55% scrollamount="80">
欢迎光临
</marquee>
<br/>
<br/>
<marquee id="xm" direction=right behavior="slide" width=60% scrollamount="80">
深圳市博伦职业技术学校
</marquee>
<br/>
<br/>
<marquee direction=right behavior="slide" width=55% scrollamount="80">
招生网
</marquee>
<br/>
<br/>
<br/>
<br/>
<marquee direction=up behavior="slide" height="500" scrollamount="50">
<input type="button" value="进入首页" />
</marquee>
<script type="text/javascript" >
setTimeout(function(){
$("#xm").hide()}, 1000);
</script>
</body>
</html>