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

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

屏幕保护效果:

<marquee height="400" direction="up" width="500" bgcolor="#3366cc">
<marquee height="50" direction="left" width="100%">
<font style="font-size: 35px; color:#fff">MARQUEE</font>
</marquee>
</marquee>

再来个参数behavior="alternate" 

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

就变成下面的

<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">
        我被墙撞回@_@!
    </marquee>
</marquee>
</td>
</tr>
</table>
51js的小恐龙朋友继续发挥

<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">
        ≮『 屏幕上的代码 』≯
        </marquee>
        </marquee>
     </td>
    <td width="468">
      <marquee direction="up" behavior="alternate" scrollamount=1 height="60">
      <marquee direction="left" scrollamount=4 behavior="alternate" width="468">
      体验编写代码的乐趣 Ξ 研究更深入的技术
      </marquee>
      </marquee>
</td></tr></table>

相关文章:

  • 2021-12-02
  • 2021-12-04
  • 2021-07-20
  • 2022-12-23
  • 2022-12-23
  • 2021-04-03
  • 2021-09-22
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-01-31
  • 2021-04-06
  • 2022-12-23
  • 2021-10-29
  • 2021-11-18
相关资源
相似解决方案