當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML DOM Marquee scrollamount屬性用法及代碼示例


HTML DOM Marquee 滾動量屬性用於設置或返回 <marquee> 元素的滾動量屬性的值。滾動量屬性用於設置每個間隔的滾動量(以像素為單位)。選取框值的默認速度為 6。

用法:

它返回選取框滾動量屬性。

marqueeObject.scrollAmount;

它設置選取框的滾動量屬性。

marqueeObject.scrollAmount="number" 

注意:該屬性從 HTML 5 開始已被棄用。

屬性值:它包含一個表示滾動元素的速度值的數值。

Example: 下麵的 HTML 代碼用於返回 Marquee rollamount 屬性。

HTML


<!DOCTYPE html>
<html>
<body style="text-align:center;">
    <h1 style="color:green;">
        GeeksforGeeks
    </h1>
    <h2>DOM Marquee scrollAmount Property</h2>
    <marquee id="marqueeID" direction="right" behavior="slide"
             loop="30" bgcolor="green" height="40px"
             Scrollamount="12">
        GeeksforGeeks:A computer Science
        Portal for Geeks
    </marquee>
    <br><br>
    <button onclick="btnClick()">
        Return speed of Marquee Tag
    </button>
    <p id="sudo"></p>
    <script>
        function btnClick() {
            var txt = document.getElementById(
                "marqueeID").scrollAmount;
            document.getElementById(
                "sudo").innerHTML = txt;
        }
    </script>
</body>
</html>

輸出:

HTML DOM Marquee scrollamount Property

HTML DOM Marquee 滾動量屬性

支持的瀏覽器:

  • 穀歌瀏覽器
  • IE瀏覽器
  • Firefox
  • 蘋果瀏覽器
  • Opera


相關用法


注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML DOM Marquee scrollamount Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。