久久久久久久视色,久久电影免费精品,中文亚洲欧美乱码在线观看,在线免费播放AV片

<center id="vfaef"><input id="vfaef"><table id="vfaef"></table></input></center>

    <p id="vfaef"><kbd id="vfaef"></kbd></p>

    
    
    <pre id="vfaef"><u id="vfaef"></u></pre>

      <thead id="vfaef"><input id="vfaef"></input></thead>

    1. 站長(zhǎng)資訊網(wǎng)
      最全最豐富的資訊網(wǎng)站

      html5自定義遮罩的實(shí)現(xiàn)代碼分享

      html5自定義遮罩的實(shí)現(xiàn)代碼分享

      ys_loading.css

      .ys-loading{      position:fixed;      top:0;      bottom:0;      left:0;      right:0;      z-index: 9999;  }     .ys-loading em{      position:absolute;      left:0;      right:0;      top:0;      bottom:0;      width:44px;      height:44px;      margin:auto;      border-radius: 22px;      opacity: 0.3;      overflow: hidden;  }     .ys-loading em:before{      content:"";      display:block;      width:46px;      height:46px;      background:url(../../images/common/ajax-loader.gif) no-repeat center center;      background-size:contain;      margin-top:-1px;      margin-left:-1px;  }

      ys_loading.js

      (function($){         var container = null;         var html =  "<div class='ys-loading'><em></em></div>";         function render(){          container = $(html).appendTo("body");      }      var initialized = false;      function init(){          if(initialized){              return;          }          initialized = true;          render();      }         var LoadingWidget = {          showLoading:function(){              init();              container.show();          },          hideLoading:function(){              container.hide();          }      };         window.LoadingWidget = LoadingWidget;  })(jQuery);

      html5自定義遮罩的實(shí)現(xiàn)代碼分享

      贊(0)
      分享到: 更多 (0)
      網(wǎng)站地圖   滬ICP備18035694號(hào)-2    滬公網(wǎng)安備31011702889846號(hào)