91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

layer如何打開/關閉動畫

發布時間:2021-07-24 14:49:49 來源:億速云 閱讀:242 作者:小新 欄目:web開發

小編給大家分享一下layer如何打開/關閉動畫,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

1. 打開窗口時,支持自定義或者第三方動畫

打開layer.js,定位到函數:Class.pt.creat ,

找到代碼:

//為兼容jQuery3.0的css動畫影響元素尺寸計算
    if (doms.anim[config.anim]) {
      var animClass = 'layer-anim ' + doms.anim[config.anim];
      that.layero.addClass(animClass).one('webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend', function () {
        $(this).removeClass(animClass);
      });
    }

修改為(此處只是針對css動畫庫animate):

//為兼容jQuery3.0的css動畫影響元素尺寸計算
    if (doms.anim[config.anim]) {
      var animClass = 'layer-anim ' + doms.anim[config.anim];
      that.layero.addClass(animClass).one('webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend', function () {
        $(this).removeClass(animClass);
      });
    } else {
      //支持自定義的,或者第三方彈出動畫
      var animClass = config.anim;
      var animated = 'animated';
      that.layero.addClass(animated);
      that.layero.addClass(animClass).one('webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend', function () {
        $(this).removeClass(animClass);
        $(this).removeClass(animated);
      });
    }

至此,layer便可支持其他彈出動畫。

2.關閉窗口時,支持自定義或者第三方動畫(layer.open時需傳入新增參數:closeAnim)

打開layer.js

定位到函數:Class.pt.config

新增參數:

closeAnim: 'layer-anim-close',

定位到函數:Class.pt.creat

找到代碼:

//記錄關閉動畫
    if (config.isOutAnim) {
      that.layero.data('isOutAnim', true);
    }

修改為:

//記錄關閉動畫
    if (config.isOutAnim) {
      that.layero.data('isOutAnim', true);
      that.layero.data('closeAnim', config.closeAnim);
    }

定位函數到:layer.close

找到代碼:

if (layero.data('isOutAnim')) {
      layero.addClass('layer-anim ' + closeAnim);
    }
 
    $('#layui-layer-moves, #layui-layer-shade' + index).remove();
    layer.ie == 6 && ready.reselect();
    ready.rescollbar(index);
    if (layero.attr('minLeft')) {
      ready.minIndex--;
      ready.minLeft.push(layero.attr('minLeft'));
    }
 
    if ((layer.ie && layer.ie < 10) || !layero.data('isOutAnim')) {
      remove()
    } else {
      setTimeout(function () {
        remove();
      }, 200);
    }

修改為:

if (layero.data('isOutAnim')) {
      if (layero.data("closeAnim") === closeAnim) {
        layero.addClass('layer-anim ' + closeAnim);
      } else {
        layero.addClass(layero.data("closeAnim") + ' animated').one('webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend', function () {
          $('#layui-layer-moves, #layui-layer-shade' + index).remove();
          remove();
        });
      }
    }
    if (layero.data("closeAnim") === closeAnim) {
      $('#layui-layer-moves, #layui-layer-shade' + index).remove();
      layer.ie == 6 && ready.reselect();
      ready.rescollbar(index);
      if (layero.attr('minLeft')) {
        ready.minIndex--;
        ready.minLeft.push(layero.attr('minLeft'));
      }
 
      if ((layer.ie && layer.ie < 10) || !layero.data('isOutAnim')) {
        remove()
      } else {
        setTimeout(function () {
          remove();
        }, 200);
      }
    }

以上是“layer如何打開/關閉動畫”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

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

AI

锦州市| 金阳县| 大港区| 贡觉县| 泽州县| 蛟河市| 万全县| 镇安县| 昌邑市| 信丰县| 霍州市| 会东县| 屯留县| 惠东县| 山阳县| 响水县| 郧西县| 女性| 淮安市| 榕江县| 阿鲁科尔沁旗| 奉节县| 库车县| 武川县| 鸡西市| 阿城市| 青阳县| 永丰县| 集安市| 余干县| 桦南县| 蛟河市| 阿荣旗| 黄陵县| 祁东县| 攀枝花市| 湘阴县| 嘉定区| 平泉县| 辛集市| 安陆市|