发帖窗口,勾选纯文本,在纯文本状态下写代码。勾选HTML代码框。
一、【基本知识】
基本语句:<marquee>文字</marquee>
1、向左移动字: <marquee>沙发客,没有陌生人的世界</marquee>
2、 向右移动字: <marquee direction=right>沙发客,没有陌生人的世界</marquee>
3、向上移动字: <marquee direction=up>沙发客,没有陌生人的世界</marquee>
4、向下移动字: <marquee direction=down>沙发客,没有陌生人的世界</marquee>
5、左右移动字: <marquee behavior=alternate>沙发客,没有陌生人的世界</marquee>
6、上下移动字: <marquee behavior=alternate direction=up>沙发客,没有陌生人的世界</marquee>
7、限宽左右移动字: <marquee width=200 behavior=alternate>沙发客,没有陌生人的世界</marquee>
8、限高向上、向下移动字: <marquee height=50 direction=down>沙发客,没有陌生人的世界</marquee> <marquee height=50 direction=up>沙发客,没有陌生人的世界</marquee>
9、向左向右跳动移动字: <marquee scrolldelay=500>沙发客,没有陌生人的世界</marquee> <marquee direction=right scrolldelay=500>沙发客,没有陌生人的世界</marquee>
10、向上向下跳动移动字: <marquee height=100 direction=up scrolldelay=1000>沙发客,没有陌生人的世界</marquee> <marquee height=100 direction=down scrolldelay=1000>沙发客,没有陌生人的世界</marquee> |