Siteserver-stl:marquee无间隔滚动

来自站长百科
跳转至: 导航、​ 搜索

导航: 上一页

stl:marquee 无间隔滚动

  • 创建一个能够无间隔滚动的内容块。<stl:marquee> 的作用与 HTML 元素<marquee>类似,区别在于<stl:marquee>能够将滚动的底部和头部连接起来,形成无间隔的滚动。

属性列表

下表显示所有属于此元素的属性列表。

属性 可能的取值 默认值 简介
scrollDelay   40 滚动延迟时间(毫秒)
direction     滚动方向
  Vertical 垂直
  Horizontal   水平
width    100% 宽度
height     高度
isDynamic     是否动态显示
  true   动态显示
  false 静态显示

注意:

  • <stl:marquee>元素适合作为滚动的新闻公告等页面元素显示。


stl:marquee 示例

  • 示例一:显示由下向上的滚动链接

下面的例子使用了 stl: marquee 元素创建了由下向上的滚动链接,滚动对象为栏目名称为“新闻公告”的内容列表。

    
<stl:marquee     
    direction="Vertical"    
    width="220"    
    height="160">    
    <stl:contents name="新闻公告" cellpadding="2" cellspacing="2" titleWordNum="16"></stl:contents>    
</stl:marquee>   
 
<stl:marquee  
    direction="Vertical" 
    width="220" 
    height="160"> 
    <stl:contents name="新闻公告" cellpadding="2" cellspacing="2" titleWordNum="16"></stl:contents> 
</stl:marquee> 
 
  • 示例二:显示由右至左的滚动链接

下面的例子使用了 stl: marquee 元素创建了由右至左的滚动链接,滚动对象为栏目名称为“新闻公告”的内容列表。

    
<stl:marquee     
    direction="Horizontal"    
    width="220">    
    <stl:contents name="新闻公告" layout="None">    
        <stl:a target="_blank"></stl:a>      
    </stl:contents>    
</stl:marquee>   

参考资料[ ]