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


HTML Marquee loop用法及代碼示例


HTML中的“字幕循環”屬性用於定義字幕循環的時間。 loop的默認值為INFINITE。

用法:

<marquee loop="number" >

屬性值:



  • number:指定循環數。

例:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>Marquee Tag</title> 
    <style> 
        .main { 
            text-align:center; 
            font-family:"Times New Roman"; 
        } 
          
        .marq { 
            padding-top:30px; 
            padding-bottom:30px; 
        } 
          
        .geek1 { 
            font-size:36px; 
            font-weight:bold; 
            color:white; 
            text-align:center; 
        } 
          
        .geek2 { 
            text-align:center; 
        } 
    </style> 
</head> 
  
<body> 
    <div class="main"> 
        <marquee class="marq"
                 bgcolor="Green"
                 direction="up" 
                 loop="1"> 
            
            <div class="geek1">GeeksforGeeks</div> 
            <div class="geek2"> 
              A computer science portal for geeks 
          </div> 
        </marquee> 
        <marquee class="marq" 
                 bgcolor="Green" 
                 direction="up" 
                 loop="2"> 
            
            <div class="geek1">GeeksforGeeks</div> 
            <div class="geek2"> 
              A computer science portal for geeks 
          </div> 
        </marquee> 
    </div> 
</body> 
  
</html>

輸出:

支持的瀏覽器:下麵列出了HTML Marquees循環屬性支持的瀏覽器:

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



相關用法


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