天天看點

一個特别的标簽--marquee

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <!-- marquee 跑馬燈(文字圖檔皆可) -- 不是w3c标準,但各大浏覽器相容都好
            1. behavior : 滾動類型,
                1: slide 滾動到邊界并停留在邊界
                2:alternate 來回彈(注意如果 loop滾動次數設定為1,則不會來回彈)

            2. direction : 滾動方向

            3. scrollamount : 滾動速度

            4. loop : 滾動次數,預設為 -1,也就是無限滾動
     -->
    <marquee behavior="slide" direction="right" scrollamount="123" loop="1">fight!</marquee>
    <marquee behavior="alternate" direction="right" scrollamount="123">gogogo!</marquee>
</body>
</html>