基本信息
源码名称:跑马灯 文字飞入
源码大小:0.74KB
文件格式:.html
开发语言:CSS
更新时间:2017-02-24
   源码介绍

文字飞入跑马灯

<!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>