| 有没有人在网页里看到过斜着滚动的marquee?没有吧,呵呵,今天教你一招斜着滚动的marquee ,看下面的代码即可实现。
<html> <head> </head> <body> <marquee behavīor="alternate" height="400" direction="up" scrollamount="3" scrolldelay="30" width="500" bgcolor="#3399FF"> <marquee behavīor="alternate" height="50" direction="left" scrollamount="3" scrolldelay="30" width="100%"> <font style="font-size: 35px">MARQUEE</font> </marquee> </marquee> </body> </html>
就这么几行代码,简单吧。
|