168 lines
4.0 KiB
HTML
168 lines
4.0 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title></title>
|
|
<link rel="stylesheet" href="../../../component/layui/css/layui.css" />
|
|
<link rel="stylesheet" href="../../../component/notiflix/notiflix-2.0.0.css"/>
|
|
<link rel="stylesheet" href="../../../admin/css/pearButton.css"/>
|
|
<link rel="stylesheet" href="../../../admin/css/pearOper.css"/>
|
|
<style>
|
|
.pear-container{
|
|
background-color: whitesmoke;
|
|
margin: 10px;
|
|
}
|
|
|
|
.load-div{
|
|
width: 100%;
|
|
height: 300px;
|
|
background-color: lightgray;
|
|
border-radius: 10px;
|
|
margin-top: 10px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body class="pear-container">
|
|
|
|
|
|
<div class="layui-card">
|
|
<div class="layui-card-header">加载组件</div>
|
|
<div class="layui-card-body">
|
|
<div>
|
|
<span>pearOper.Load(1,message);</span>
|
|
<br>
|
|
<br>
|
|
<span>pearOper.Load(2,message);</span>
|
|
<br>
|
|
<br>
|
|
<span>pearOper.Load(3,message);</span>
|
|
<br>
|
|
<br>
|
|
<span>pearOper.Load(4,message);</span>
|
|
<br>
|
|
<br>
|
|
<span>pearOper.Load(5,message);</span>
|
|
<br>
|
|
<br>
|
|
<span>pearOper.remove(time);</span>
|
|
<br>
|
|
<br>
|
|
</div>
|
|
<button class="loading-1 pear-btn pear-btn-primary" plain>加载</button>
|
|
<button class="loading-2 pear-btn pear-btn-success" plain>加载</button>
|
|
<button class="loading-3 pear-btn pear-btn-danger" plain>加载</button>
|
|
<button class="loading-4 pear-btn pear-btn-warming" plain>加载</button>
|
|
<button class="loading-5 pear-btn">加载</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="layui-card">
|
|
<div class="layui-card-header">加载组件</div>
|
|
<div class="layui-card-body">
|
|
<button class="block-5 pear-btn">加载</button>
|
|
|
|
<button class="block-4 pear-btn">加载</button>
|
|
|
|
<button class="block-3 pear-btn">加载</button>
|
|
|
|
<button class="block-2 pear-btn">加载</button>
|
|
<button class="block-1 pear-btn">加载</button>
|
|
<div class="load-div load-div-1"></div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div class="layer-right">
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<script src="../../../component/layui/layui.js"></script>
|
|
<script>
|
|
layui.use(['element','jquery','pearOper','code'],function(){
|
|
var element = layui.element;
|
|
var $ = layui.jquery;
|
|
var pearOper = layui.pearOper;
|
|
|
|
var msg = '"Do not try to become a person of success but try to become a person of value." <br><br>- Albert Einstein'
|
|
|
|
|
|
|
|
$(".loading-1").click(function(){
|
|
|
|
pearOper.Load(1,"");
|
|
|
|
pearOper.loadRemove(1000);
|
|
})
|
|
|
|
$(".loading-2").click(function(){
|
|
|
|
pearOper.Load(2,"");
|
|
|
|
pearOper.loadRemove(1000);
|
|
})
|
|
|
|
$(".loading-3").click(function(){
|
|
|
|
pearOper.Load(3,"");
|
|
|
|
pearOper.loadRemove(1000);
|
|
})
|
|
|
|
$(".loading-4").click(function(){
|
|
|
|
pearOper.Load(4,"");
|
|
|
|
pearOper.loadRemove(1000);
|
|
})
|
|
|
|
$(".loading-5").click(function(){
|
|
|
|
pearOper.Load(5,"");
|
|
|
|
pearOper.loadRemove(1000);
|
|
})
|
|
|
|
$(".block-1").click(function(){
|
|
|
|
pearOper.block({type:1,elem:'.load-div-1',msg:'加载中'})
|
|
pearOper.blockRemove(".load-div-1",1000);
|
|
})
|
|
|
|
$(".block-2").click(function(){
|
|
pearOper.block({type:2,elem:'.load-div-1',msg:''})
|
|
pearOper.blockRemove(".load-div-1",1000);
|
|
})
|
|
|
|
$(".block-3").click(function(){
|
|
pearOper.block({type:3,elem:'.load-div-1',msg:''})
|
|
pearOper.blockRemove(".load-div-1",1000);
|
|
})
|
|
|
|
$(".block-4").click(function(){
|
|
pearOper.block({type:4,elem:'.load-div-1',msg:''})
|
|
pearOper.blockRemove(".load-div-1",1000);
|
|
})
|
|
|
|
$(".block-5").click(function(){
|
|
pearOper.block({type:5,elem:'.load-div-1',msg:''})
|
|
pearOper.blockRemove(".load-div-1",1000);
|
|
})
|
|
|
|
$(".block-6").click(function(){
|
|
pearOper.block({type:6,elem:'.load-div-1',msg:''})
|
|
pearOper.blockRemove(".load-div-1",1000);
|
|
})
|
|
|
|
|
|
})
|
|
</script>
|
|
</body>
|
|
</html> |