marquee 和JS 滚动效果

 一、marquee标签的几个重要属性:

         1.direction:滚动方向(包括4个值:up、down、left、right)

            说明:up:从下向上滚动;down:从上向下滚动;left:从右向左滚动;right:从左向右滚动。

            语法:<marquee direction="滚动方向">...</marquee>

         2.behavior:滚动方式(包括3个值:scroll、slide、alternate)

            说明:scroll:循环滚动,默认效果;slide:只滚动一次就停止;alternate:来回交替进行滚动。

            语法:<marquee behavior="滚动方式">...</marquee>

         3.scrollamount:滚动速度(滚动速度是设置每次滚动时移动的长度,以像素为单位)

            语法:<marquee scrollamount="5">...</marquee>

         4.scrolldelay:设定滚动两次之间的延迟时间,值大了会有一步一停顿的效果(设置滚动的时间间隔,单位是毫秒)

            语法:<marquee scrolldelay="100">...</marquee>

         5.loop:设定滚动循环的次数(默认值是-1,滚动会不断的循环下去)

            语法:<marquee loop="2">...</marquee>                        

                         <marquee loop="-1" bgcolor="#CCCCCC">我会不停地走。</marquee>

                         <marquee loop="2" bgcolor="#CCCCCC">我只走两次哦</marquee>

         6.widthheight:设定滚动字幕的宽度、高度

            语法:<marquee width="500" height="200">...</marquee>

         7.bgcolor:设定滚动字幕的背景颜色(可以是颜色值,也可以是rgb()或rgba()函数)

            语法:<marquee bgcolor="rgba(0,0,0,0.2)">...</marquee>

          8.hspacevspace:空白空间(相当于设置margin值)

             说明:hspace:设定活动字幕里所在的位置距离父容器水平边框的距离,如hspace=“10”,即等同于:margin:0 10px;

                         vspace:设定活动字幕里所在的位置距离父容器垂直边框的距离,如vspace=“10”,即等同于:margin:10px 0;

             语法:<marquee hspace="10"  vspace="10">...</marquee>(等同于:margin:10px;)

          9.align:设定滚动字幕内容的对齐方式(包括9个值:absbottom、absmiddle、baseline、bottom、left、middle、right、                                       texttop、top)

              说明:absbottom:绝对底部对齐(与g、p等字母的最下端对齐)
                          absmiddle:绝对中央对齐
                          baseline:底线对齐
                          bottom:底部对齐(默认)
                          left:左对齐
                          middle:中间对齐
                          right:右对齐
                          texttop:顶线对齐
                          top:顶部对齐

                 语法:<marquee align="对齐方式">...</marquee>

           10.face:设定滚动字幕的文字字体

                语法:<marquee font="楷体_GB2312"></marquee>

           11.color:设定滚动字幕的文字颜色

                语法:<marquee color="#333"></marquee>

           12.size:设定滚动字幕的文字字号

                语法:<marquee size="3"></marquee>

           13.STRONG:设定滚动字幕的文字加粗

                语法:<marquee STRONG></marquee>

          二、marquee常用到的两个事件:
               onMouseOut="this.start()" 用来设置鼠标移出该区域时继续滚动
               onMouseOver="this.stop()" 用来设置鼠标移入该区域时停止滚动

               <marquee onMouseOut="this.start()" onMouseOver="this.stop()">marquee常用到的两个事件</marquee>                                         

          完整代码如下:

           <marquee id="affiche" align="left" behavior="scroll" bgcolor="#FF0000" direction="up" height="300" width="200" hspace="50"            vspace="20" loop="-1" scrollamount="10" scrolldelay="100" onMouseOut="this.start()" onMouseOver="this.stop()">

复制代码
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
</head>

<body>
<div>
<marquee direction="up" behavior="scroll" scrollamount="1" scrolldelay="0" loop="-1" width="1000" height="50" bgcolor="#0099FF" hspace="10" vspace="10">
指整个Marquee对齐方式; (2)behavior:设置滚动的方式: scroll:表示由一端滚动到另一端,会重复,缺陷是不能无缝滚动。 slide:表示由一段滚动到另一端,不会重复...
</marquee>
</div>
</body>
</html>

marquee 标签的鼠标放上去滚动效果 鼠标离开继续滚动

这也是笔者刚发现的一个marquee的写法,应该说这个效果很实用,可以轻松的实现鼠标放上去停止滚动、鼠标离开继续滚动的效果。下面是具体的用法(特别注意onMouseOver和onMouseOut是需要同时写进去才会出现比较好的效果):
onMouseOut="this.start()" :用来设置鼠标移出该区域时继续滚动
onMouseOver="this.stop()":用来设置鼠标移入该区域时停止滚动
代码如下:
<marquee onMouseOut="this.start()" onMouseOver="this.stop()">onMouseOut="this.start()" :用来设置鼠标移出该区域时继续滚动 onMouseOver="this.stop()":用来设置鼠标移入该区域时停止滚动</marquee>
 
这是一个完整的例子:
代码如下:
<marquee id="affiche" align="left" behavior="scroll" bgcolor="#FF0000" direction="up" height="300" width="200" hspace="50" vspace="20" loop="-1" scrollamount="10" scrolldelay="100" onMouseOut="this.start()" onMouseOver="this.stop()"> 这是一个完整的例子 </marquee>
 
该标签支持的属性多达11个:
 
align 设定<marquee>标签内容的对齐方式 absbottom:绝对底部对齐(与g、p等字母的最下端对齐) absmiddle:绝对中央对齐 baseline:底线对齐 bottom:底部对齐(默认) left:左对齐 middle:中间对齐 right:右对齐 texttop:顶线对齐 top:顶部对齐
代码如下:
<marquee align="absbottom">align="absbottom":绝对底部对齐(与g、p等字母的最下端对齐)。 </marquee> <marquee align="absmiddle">align="absmiddle": 绝对中央对齐。 </marquee> <marquee align="baseline">align="baseline": 底线对齐。 </marquee> <marquee align="bottom">align="bottom": 底部对齐(默认)。 </marquee> <marquee align="left">align="left": 左对齐。 </marquee> <marquee align="middle">align="middle": 中间对齐。 </marquee> <marquee align="right">align="right": 右对齐。 </marquee> <marquee align="texttop">align="texttop": 顶线对齐。 </marquee> <marquee align="top">align="top": 顶部对齐。 </marquee>
 
behavior 设定滚动的方式: alternate: 表示在两端之间来回滚动。 scroll: 表示由一端滚动到另一端,会重复。 slide:  表示由一端滚动到另一端,不会重复。
代码如下:
<marquee behavior="alternate">alternate:表示在两端之间来回滚动。 </marquee> <marquee behavior="scroll">scroll:表示由一端滚动到另一端,会重复。</marquee> <marquee behavior="slide">slide:  表示由一端滚动到另一端,不会重复。</marquee>
 
bgcolor 设定活动字幕的背景颜色,背景颜色可用RGB、16进制值的格式或颜色名称来设定。
代码如下:
<marquee bgcolor="#006699">设定活动字幕的背景颜色 bgcolor="#006699"</marquee> <marquee bgcolor="RGB(10%,50%,100%,)">设定活动字幕的背景颜色 bgcolor="rgb(10%,50%,100%,)"</marquee> <marquee bgcolor="red">设定活动字幕的背景颜色 bgcolor="red"</marquee>
 
direction 设定活动字幕的滚动方向
代码如下:
<marquee direction="down">设定活动字幕的滚动方向direction="down":向下</marquee> <marquee direction="left">设定活动字幕的滚动方向direction="left":向左</marquee> <marquee direction="right">设定活动字幕的滚动方向direction="right":向右</marquee> <marquee direction="up">设定活动字幕的滚动方向direction="up":向上</marquee>
 
height 设定活动字幕的高度
代码如下: <marquee height="500" direction="down" bgcolor="#CCCCCC">设定活动字幕的高度height="500"</marquee>
 
width 设定活动字幕的宽度
代码如下: <marquee width="500" bgcolor="#CCCCCC">设定活动字幕的宽度width="500"</marquee>
 
hspace 设定活动字幕里所在的位置距离父容器水平边框的距离 This controls the horizontal(水平)space around the display box.
代码如下:
  <table width="500" border="1" align="center" cellpadding="0" cellspacing="0">     <tr>       <td><marquee hspace="100" bgcolor="#CCCCCC">hspace="100"</marquee></td>     </tr>   </table>
 
vspace 设定活动字幕里所在的位置距离父容器垂直边框的距离 This controls the vertical(垂直) space around the display box.
代码如下: <marquee vspace="100" bgcolor="#CCCCCC">hspace="100"</marquee>
 
loop 设定滚动的次数,当loop=-1表示一直滚动下去,默认为-1
代码如下:
<marquee loop="-1" bgcolor="#CCCCCC">我会不停地走。</marquee> <p>&nbsp;</p> <marquee loop="2" bgcolor="#CCCCCC">我只走两次哦</marquee>
 
scrollamount 设定活动字幕的滚动速度,单位pixels
代码如下:
<marquee scrollamount="10" >scrollamount="10" </marquee> <marquee scrollamount="20" >scrollamount="20" </marquee> <marquee scrollamount="30" >scrollamount="30" </marquee>
 
scrolldelay 设定活动字幕滚动两次之间的延迟时间,单位millisecond(毫秒) 值大了会有一步一停顿的效果
代码如下:
<marquee scrolldelay="10" >scrolldelay="10" </marquee> <marquee scrolldelay="100" > scrolldelay="100"</marquee> <marquee scrolldelay="1000">scrolldelay="1000" </marquee>
===============================================================================
marquee实现首尾相连循环滚动效果(): 

代码如下:
<marquee behavior="scroll" contenteditable="true" onstart="this.firstChild.innerHTML+=this.firstChild.innerHTML;" scrollamount="3" width="100" οnmοuseοver="this.stop();" οnmοuseοut="this.start();"> 
这里是要滚动的内容 
</marquee>
======================基本示例====================================================
<marquee direction="down" loop="-1" truespeed="truespeed" height="300px" behavior="scroll" scrollamount="3" scrolldelay="100">
		<p><a href="">hellohellohellohellohellohellohellohellohellohello</a></p>
		<p>hellohellohellohellohellohellohellohellohellohello</p>
		<p>hellohellohellohellohellohellohellohellohellohello</p>
		<p>hellohellohellohellohellohellohellohellohellohello</p>
		<p>hellohellohellohellohellohellohellohellohellohello</p>
		<p>hellohellohellohellohellohellohellohellohellohello</p>
		<p>hellohellohellohellohellohellohellohellohellohello</p>
		
</marquee>
=============================以下是JS实现无缝滚动效果=================================
  
  
  1. <!DOCTYPE html>  
  2. <html>  
  3. <head>  
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />  
  5. <title>marquee测试</title>  
  6. <script type="text/javascript" src="../../jquery/jquery.js"></script>    
  7. <script type="text/javascript" src="../marquee/lib/jquery.marquee.js"></script>    
  8. <script type="text/javascript">    
  9.     $(function(){        
  10.          $("#marquee").marquee({  
  11.            yScroll: "bottom",  
  12.            showSpeed: 850,        // 初始下拉速度         ,   
  13.            scrollSpeed: 12,       // 滚动速度         ,   
  14.            pauseSpeed: 500,      // 滚动完到下一条的间隔时间         ,   
  15.            pauseOnHover: true,    // 鼠标滑向文字时是否停止滚动         ,   
  16.            loop: -1 ,             // 设置循环滚动次数 (-1为无限循环)         ,   
  17.            fxEasingShow: "swing" , // 缓冲效果         ,   
  18.            fxEasingScroll: "linear",  // 缓冲效果         ,   
  19.            cssShowing: "marquee-showing"  //定义class   
  20.   
  21.          });    
  22.     });    
  23. </script>  
  24.   
  25. <style>  
  26.    ul.marquee {  
  27.        display: block;  
  28.        line-height: 1;  
  29.        position: relative;  
  30.        overflow: hidden;  
  31.        width: 400px;    
  32.        height: 22px;   
  33.    }    
  34.    ul.marquee li {  
  35.        position: absolute;   
  36.        top: -999em;  
  37.        left: 0;  
  38.        display: block;    
  39.        white-space: nowrap;   
  40.        padding: 3px 5px;   
  41.        text-indent:0.8em  
  42.     }  
  43. </style>  
  44.   
  45. </head>  
  46.   
  47. <body >  
  48.   
  49.   
  50. <ul id="marquee" class="marquee">          
  51. <li><a href="http://www.bloomylife.com/?cat=153" target="_blank">WEB前端开发</a> [2011-10-20]</li>         
  52. <li><a href="http://www.bloomylife.com/?cat=154" target="_blank">架构设计</a> [2011-09-20]</li>          
  53. <li><a href="http://www.bloomylife.com/?cat=157" target="_blank">系统运维</a> [2011-10-16]</li>       
  54. </ul>   
  55.   
  56. </body>  
  57. </html>  

该插件提供了许多属性选项,您可以配置定制外观和效果。

  • {          
  • yScroll: "top"        // 初始滚动方向 (还可以是"top" 或 "bottom")         ,
  • showSpeed: 850        // 初始下拉速度         ,
  • scrollSpeed: 12       // 滚动速度         ,
  • pauseSpeed: 5000      // 滚动完到下一条的间隔时间         ,
  • pauseOnHover: true    // 鼠标滑向文字时是否停止滚动         ,
  • loop: -1              // 设置循环滚动次数 (-1为无限循环)         ,
  • fxEasingShow: "swing"  // 缓冲效果         ,
  • fxEasingScroll: "linear"  // 缓冲效果         ,
  • cssShowing: "marquee-showing"  //定义class           //
  • event handlers         ,
  • init: null                // 初始调用函数         ,
  • beforeshow: null           // 滚动前回调函数         ,
  • show: null                 // 当新的滚动内容显示时回调函数         ,
  • aftershow: null            // 滚动完了回调函数 
本文参考多位博友文章:在此谢过!
  • 2
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值