嵌套的Marquee用法

来源:互联网 发布:装修公司网站php源码 编辑:程序博客网 时间:2024/04/29 01:43

Marquee都会用,嵌套的Marquee你试过?

来字经典论坛的沧海水朋友着实让人大跌眼镜:D

HTML代码:
<marquee height="400" direction="up" width="500" bgcolor="#3366cc">
<marquee height="50" direction="left" width="100%">
<font style="font-size: 35px; color:#fff">Guo's Blog</font>
</marquee>
</marquee>


再来个参数behavior="alternate" 

scroll:Marquee 根据 direction 设置的方向滚动,文本滚到头以后再重头开始,这是默认值。. 
alternate:Marquee 的内容到达容器的边缘后又按照相反的方向滚动回来,周而复始,形成周期
slid:Marquee 根据 direction 设置的方向滚动,到边缘就停止滚动,不再重复

就变成下面的

HTML代码:
<table>
<tr>
<td bgcolor=#cc3300 width=468>
<marquee direction="down" behavior="alternate" scrollamount=1 height="60">
  <marquee direction="right" behavior="alternate" scrollamount=4  width="468">
        我被墙撞回@_@!GuoBlog.com
    </marquee>
</marquee>
</td>
</tr>
</table>


51js的小恐龙朋友继续发挥
HTML代码:
<table bgcolor="#EFEFEF">
  <tr><td width="1" valign="top" >
        <marquee direction="down" behavior="alternate" scrollamount=1 height="60">
        <marquee direction="right" scrollamount=4 behavior="alternate" width="468">
        ≮『 Guo's Blog 』≯ 
        </marquee>
        </marquee>
     </td>
    <td width="468"> 
      <marquee direction="up" behavior="alternate" scrollamount=1 height="60">
      <marquee direction="left" scrollamount=4 behavior="alternate" width="468">
      http://www.guoblog.com
      </marquee>
      </marquee>
</td></tr></table>
原创粉丝点击