中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

H5實現中獎記錄逐行滾動切換效果

發布時間:2020-09-03 09:28:09 來源:腳本之家 閱讀:180 作者:_LinDL 欄目:web開發

本文實例為大家分享了H5逐行滾動切換效果的具體代碼,供大家參考,具體內容如下

前端頁面需先引入jquery

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>中獎記錄跑馬燈特效</title>
  <script src="../js/jquery-2.2.0.min.js"></script>
  <script src="../js/recordRoll.js"></script>
  <style>
    .box{
      width: 18rem;
      height: 15rem;
      margin: auto;
      background-color: cadetblue;
    }
    .record_title{
      text-align: center;
      width: 100%;
      height: 2rem;
      margin-top: 0.2rem;
      z-index: 2;
      background-color: cadetblue;
      vertical-align: middle;
    }
    .record_list{
      height: 11rem;
      overflow: hidden;
      background-color: cadetblue;
      text-align: left;
      margin-left: 1rem;
    }
  </style>
</head>
<body>
  <div class="box">
    <div class="record_title">
    <h2>中獎記錄</h2>
    </div>
    <div class="record_list">
      <p>恭喜Ivy抽中10元話費</p>
      <p>恭喜LinDL抽中100元京東E卡</p>
      <p>恭喜Mary抽中40元電影票優惠券</p>
      <p>恭喜Ivy抽中30元話費</p>
      <p>恭喜金坎抽中50元話費</p>
      <p>恭喜Ivy抽中80元話費</p>
      <p>恭喜Ivy抽中200元話費</p>
      <p>恭喜慧林抽中5000元話費</p>
      <p>恭喜張敏抽中iPhone7</p>
      <p>恭喜Ivy抽中10元話費</p>
    </div>
  </div>
</body>
<script>
  $(document.body).ready(function(){
    $(".record_list").RollTitle({line:1,speed:800,timespan:1});
  });
</script>
</html>

利用定時器實現中獎記錄逐行展示
recordRoll.js

/**
 * Created by lin on 2017/3/12.
 */
(function($){
  $.fn.extend({
    RollTitle: function(opt){
      if(!opt) var opt={};
      var _this = this;
      _this.timer = null;
      _this.lineH = _this.find("p:first").height();
      _this.line=opt.line?parseInt(opt.line,15):parseInt(_this.height()/_this.lineH,10);
      _this.speed=opt.speed,
      _this.timespan=opt.timespan;
      if(_this.line==0) this.line=1;

      _this.scrollUp=function(){
        _this.animate({
          marginTop:0
        },_this.speed,function(){
          for(i=1;i<=_this.line;i++){
            _this.find("p:first").appendTo(_this);
          }
          _this.css({marginTop:0});
        });
      }
      _this.hover(function(){
        clearInterval(_this.timer);
      },function(){
        _this.timer=setInterval(function(){_this.scrollUp();},_this.timespan);
      }).mouseout();
    }
  })
})(jQuery);

效果圖:

H5實現中獎記錄逐行滾動切換效果

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

澎湖县| 靖远县| 永济市| 读书| 当雄县| 栾川县| 齐河县| 达州市| 瑞丽市| 宾川县| 三门峡市| 依安县| 正蓝旗| 凤冈县| 兴仁县| 寻乌县| 易门县| 灵石县| 祁东县| 吉隆县| 霍林郭勒市| 德兴市| 和静县| 静安区| 金溪县| 平原县| 桂平市| 牟定县| 班戈县| 筠连县| 花垣县| 祁东县| 灵宝市| 长乐市| 沈阳市| 平山县| 永平县| 阳春市| 武义县| 武强县| 铜川市|