当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。