jQuery로 구현한 텍스트 한 줄씩 위쪽으로 간헐적으로 스크롤되는 효과의 예

韦小宝
풀어 주다: 2018-01-25 11:03:43
원래의
1702명이 탐색했습니다.

이 글은 주로 jQuery로 구현된 텍스트 한 줄씩 위로 간헐적으로 스크롤되는 효과를 소개하며, jQuery의 시간 함수 기반 페이지 요소 스타일의 동적 변환과 관련된 조작 기술을 포함합니다. jQuery에 관심이 있는 친구들은 이 글을 참조할 수 있습니다.

구체적인 코드는 다음과 같습니다.

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>www.php.cn 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:&#39;微软雅黑&#39;; -webkit-tap-highlight-color:rgba(0,0,0,0); }
li{ list-style:none }
img{ border:none}
a{text-decoration:none;}
/* -------------------------摇奖排行榜----------------------------------- */
.Top_Record{}
.record_Top{width:90%; height:50px; text-align:center; line-height:50px; margin:30px auto 0px; color:#000;}
.topRec_List dl,.maquee{ width: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){ width:17%; height:40px; line-height:40px; }
.topRec_List dl dd:nth-child(2){ width:18%; height:40px; line-height:40px; }
.topRec_List dl dd:nth-child(3){ width:25%; height:40px; line-height:40px; }
.topRec_List dl dd:nth-child(4){ width:40%; height:40px; line-height:40px; }
.maquee{ height:195px;}
.topRec_List ul{ width:100%; height:195px;}
.topRec_List li{ width: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 p{ float:left;}
.topRec_List li p:nth-child(1){ width:17%;}
.topRec_List li p:nth-child(2){ width:18%;}
.topRec_List li p:nth-child(3){ width:25%;}
.topRec_List li p:nth-child(4){ width:40%;}
.apple a{display:block; text-decoration:none;}
.apple,.aa{ width:90%; height:50px; overflow:hidden; margin:30px auto; border:1px solid #1B96EE;}
.apple a,.aa a{ width:100%; height:50px; line-height:50px; text-indent:20px; color:#1B96EE;}
.aa {word-wrap:break-word;line-height:50px; color:#1B96EE;}
</style>
</head>
<body>
<p class="Top_Record">
  <p class="record_Top">摇奖排行榜</p>
  <p class="topRec_List">
    <dl>
      <dd>编号</dd>
      <dd>姓名</dd>
      <dd>奖项</dd>
      <dd>时间</dd>
    </dl>
    <p class="maquee">
      <ul>
        <li>
          <p>1</p>
          <p>王**</p>
          <p>中了30元</p>
          <p>2014/12/30 14:20</p>
        </li>
        <li>
          <p>2</p>
          <p>王**</p>
          <p>中了30元</p>
          <p>2014/12/30 14:20</p>
        </li>
        <li>
          <p>3</p>
          <p>王**</p>
          <p>中了30元</p>
          <p>2014/12/30 14:20</p>
        </li>
        <li>
          <p>4</p>
          <p>王**</p>
          <p>中了30元</p>
          <p>2014/12/30 14:20</p>
        </li>
        <li>
          <p>5</p>
          <p>王**</p>
          <p>中了30元</p>
          <p>2014/12/30 14:20</p>
        </li>
        <li>
          <p>6</p>
          <p>王**</p>
          <p>中了30元</p>
          <p>2014/12/30 14:20</p>
        </li>
        <li>
          <p>7</p>
          <p>王**</p>
          <p>中了30元</p>
          <p>2014/12/30 14:20</p>
        </li>
        <li>
          <p>8</p>
          <p>王**</p>
          <p>中了30元</p>
          <p>2014/12/30 14:20</p>
        </li>
      </ul>
    </p>
  </p>
</p>
<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(&#39;autoScroll(".maquee")&#39;,1500);
     $(".maquee").hover(function(){
      console.log("aaa");
      clearInterval(scroll);
     },function(){
      scroll=setInterval(&#39;autoScroll(".maquee")&#39;,1500);
     });
  });
</script>
</body>
</html>
로그인 후 복사

위는 이 글의 소스코드입니다. 이 글에 관심이 있는 친구들은 소스코드를 참고하시면 공부에 도움이 되실 것 같아요! PHP 중국어 웹사이트에 오신 것을 환영합니다!

관련 권장 사항:


jquery 반올림 및 내림은 페이징 쿼리에 적합합니다.

DOM 트리를 위쪽으로 순회하는 jQuery의 차이점은 parent(), parent(), Nearest()

jquery가 위쪽으로 순회하는 것입니다. 하향 순회, 형제 순회 및 필터링 사용법에 대한 자세한 설명

위 내용은 jQuery로 구현한 텍스트 한 줄씩 위쪽으로 간헐적으로 스크롤되는 효과의 예의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
최신 이슈
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!