标签:
使用marquee标记可以将文字设置为动态滚动的效果。
语法:<marquee>滚动的文字</marquee>
说明:只要在标记之间添加要进行滚动的文字即可,而且可以在标记之间设置这些文字的字体,颜色等
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="Generator" content="EditPlus®">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
<title>Document</title>
</head>
<body>
<marquee direction="up"loop="3">
<font color="blue"face="楷体_GB2312">
你好欢迎光临!<br>
你可知道我爱你<br>
I love you,but you don‘t know how much I love you.<br>
你爱或则不爱,爱就在这里<br>
</font>
</marquee>
</body>
</html>
注意:
1.文字滚动方向-direction(up/down)
2.文字滚动方式-behavior
标签:
原文地址:http://www.cnblogs.com/kaifeibuluo/p/4339638.html