jquery實現loading蒙版載入
阿新 • • 發佈:2019-02-08
html:<div id="scbackground" class="background" style="display: none; "></div>
css:(loading-new.gif是載入的動態圖,可以在網上找)
<style type="text/css"> .background { display: block; width: 100%; height: 100%; opacity: 0.4; filter: alpha(opacity=40); background:while; position: absolute; top: 0; left: 0; z-index: 2000; } .background { background: white url(../img/loading-new.gif) no-repeat center; } </style>
js:
var bg = $("#scbackground");
bg.show();
回撥函式中:bg.hide();