html-有趣的标签-会移动的文字

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Marquee</title>
</head>
<body>
<!-- bihavior =scroll一圈一圈绕着走, slide走一次, alternate来回走-->
<!-- direction 移动方向 =left right-->
<!-- loop =次数;若未指定则循环不止 -->
<!-- 速度 <scrollamount=#> -->
<!-- 延时 <scrolldelay=#> 走几步停几下-->
<!-- 底色 <bgcolor=#> -->
<!-- 面积 <height=# width=#> -->
<!-- 空白(Margins)<hspace=# vspace=#> 相当于外边距-->

<marquee behavior="scroll" direction="left" loop="3" scrollamount="100" scrolldelay="500" bgcolor="pink" width=150 hspace=20 vspace=20>走你</marquee>
</body>
</html>

猜你喜欢

转载自www.cnblogs.com/web-zyf/p/9260689.html