zoukankan      html  css  js  c++  java
  • jQuery实现的文字逐行向上间歇滚动效果示例

    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>www.jb51.net jQuery文字逐行向上滚动代码</title>
    <link href="css/index.css" rel="external nofollow" rel="stylesheet" type="text/css">
    <script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>
    <style>
    *{ margin:0px; padding:0px; font-family:'微软雅黑'; -webkit-tap-highlight-color:rgba(0,0,0,0); }
    li{ list-style:none }
    img{ border:none}
    a{text-decoration:none;}
    /* -------------------------摇奖排行榜----------------------------------- */
    .Top_Record{}
    .record_Top{90%; height:50px; text-align:center; line-height:50px; margin:30px auto 0px; color:#000;}
    .topRec_List dl,.maquee{ 90%; overflow:hidden; margin:0 auto; color:#7C7C7C}
    .topRec_List dd{ float:left; text-align:center; border-bottom:1px solid #1B96EE; color:#1B96EE;}
    .topRec_List dl dd:nth-child(1){ 17%; height:40px; line-height:40px; }
    .topRec_List dl dd:nth-child(2){ 18%; height:40px; line-height:40px; }
    .topRec_List dl dd:nth-child(3){ 25%; height:40px; line-height:40px; }
    .topRec_List dl dd:nth-child(4){ 40%; height:40px; line-height:40px; }
    .maquee{ height:195px;}
    .topRec_List ul{ 100%; height:195px;}
    .topRec_List li{ 100%; height:38px; line-height:38px; text-align:center; font-size:12px; border-bottom: 1px dashed #aaa;}
    /*.topRec_List li:nth-child(2n){ background:#077cd0}*/
    .topRec_List li div{ float:left;}
    .topRec_List li div:nth-child(1){ 17%;}
    .topRec_List li div:nth-child(2){ 18%;}
    .topRec_List li div:nth-child(3){ 25%;}
    .topRec_List li div:nth-child(4){ 40%;}
    .apple a{display:block; text-decoration:none;}
    .apple,.aa{ 90%; height:50px; overflow:hidden; margin:30px auto; border:1px solid #1B96EE;}
    .apple a,.aa a{ 100%; height:50px; line-height:50px; text-indent:20px; color:#1B96EE;}
    .aa {word-wrap:break-word;line-height:50px; color:#1B96EE;}
    </style>
    </head>
    <body>
    <div class="Top_Record">
      <div class="record_Top">摇奖排行榜</div>
      <div class="topRec_List">
        <dl>
          <dd>编号</dd>
          <dd>姓名</dd>
          <dd>奖项</dd>
          <dd>时间</dd>
        </dl>
        <div class="maquee">
          <ul>
            <li>
              <div>1</div>
              <div>王**</div>
              <div>中了30元</div>
              <div>2014/12/30 14:20</div>
            </li>
            <li>
              <div>2</div>
              <div>王**</div>
              <div>中了30元</div>
              <div>2014/12/30 14:20</div>
            </li>
            <li>
              <div>3</div>
              <div>王**</div>
              <div>中了30元</div>
              <div>2014/12/30 14:20</div>
            </li>
            <li>
              <div>4</div>
              <div>王**</div>
              <div>中了30元</div>
              <div>2014/12/30 14:20</div>
            </li>
            <li>
              <div>5</div>
              <div>王**</div>
              <div>中了30元</div>
              <div>2014/12/30 14:20</div>
            </li>
            <li>
              <div>6</div>
              <div>王**</div>
              <div>中了30元</div>
              <div>2014/12/30 14:20</div>
            </li>
            <li>
              <div>7</div>
              <div>王**</div>
              <div>中了30元</div>
              <div>2014/12/30 14:20</div>
            </li>
            <li>
              <div>8</div>
              <div>王**</div>
              <div>中了30元</div>
              <div>2014/12/30 14:20</div>
            </li>
          </ul>
        </div>
      </div>
    </div>
    <script type="text/javascript">
      function autoScroll(obj){
        $(obj).find("ul").animate({
          marginTop : "-39px"
        },1000,function(){
          $(this).css({marginTop : "0px"}).find("li:first").appendTo(this);
        })
      }
      $(function(){
        var scroll=setInterval('autoScroll(".maquee")',1500);
         $(".maquee").hover(function(){
          console.log("aaa");
          clearInterval(scroll);
         },function(){
          scroll=setInterval('autoScroll(".maquee")',1500);
         });
      });
    </script>
    </body>
    </html>
    <MARQUEE id="msky" direction="left" width="780" scrolldelay ="200" onmouseover="this.stop();" onmouseout="this.start();">  <span class="style2"> 今天 晴转多云 25℃~34℃ 东南风3-4级</span></MARQUEE>
  • 相关阅读:
    Windows性能计数器应用
    Azure Oracle Linux VNC 配置
    Azure 配置管理系列 Oracle Linux (PART6)
    Azure 配置管理系列 Oracle Linux (PART5)
    Azure 配置管理系列 Oracle Linux (PART4)
    Azure 配置管理系列 Oracle Linux (PART3)
    Azure 配置管理系列 Oracle Linux (PART2)
    vagrant多节点配置
    docker基本操作
    LINUX开启允许对外访问的网络端口命令
  • 原文地址:https://www.cnblogs.com/SofuBlue/p/11315988.html
Copyright © 2011-2022 走看看