90 lines
3.3 KiB
HTML
90 lines
3.3 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title></title>
|
|
<link rel="stylesheet" href="../../component/pear/css/pear.css" />
|
|
</head>
|
|
<body class="pear-container">
|
|
<div class="layui-row layui-col-space10">
|
|
<div class="layui-col-md12">
|
|
<div class="layui-card">
|
|
<div class="layui-card-header">
|
|
简单使用
|
|
</div>
|
|
<div class="layui-card-body">
|
|
<button class="pear-btn">Default Button</button>
|
|
<button class="pear-btn" dashed>Dashed Button</button>
|
|
<button class="pear-btn pear-btn-primary">Primary Button</button>
|
|
<br>
|
|
<br>
|
|
<button class="pear-btn pear-btn-primary"> Button-Primary</button>
|
|
<button class="pear-btn pear-btn-success"> Button-Success</button>
|
|
<button class="pear-btn pear-btn-danger"> Button-danger</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="layui-col-md12">
|
|
<div class="layui-card">
|
|
<div class="layui-card-header">
|
|
按钮大小
|
|
</div>
|
|
<div class="layui-card-body">
|
|
<button class="pear-btn pear-btn-primary pear-btn-lg"> Button-Lg</button>
|
|
<button class="pear-btn pear-btn-primary"> Button-Default</button>
|
|
<button class="pear-btn pear-btn-primary pear-btn-sm"> Button-Sm</button>
|
|
<button class="pear-btn pear-btn-primary pear-btn-xs"> Button-Xs</button>
|
|
<br>
|
|
<br>
|
|
<button class="pear-btn pear-btn-warming pear-btn-lg"> Button-Lg</button>
|
|
<button class="pear-btn pear-btn-warming"> Button-Default</button>
|
|
<button class="pear-btn pear-btn-warming pear-btn-sm"> Button-Sm</button>
|
|
<button class="pear-btn pear-btn-warming pear-btn-xs"> Button-Xs</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="layui-row layui-col-space10">
|
|
<div class="layui-col-md12">
|
|
<div class="layui-card">
|
|
<div class="layui-card-header">
|
|
按钮组
|
|
</div>
|
|
<div class="layui-card-body">
|
|
<div class="pear-btn-group">
|
|
<button class="pear-btn pear-btn-primary" round> Button-One</button>
|
|
<button class="pear-btn pear-btn-primary" round> Button-Two</button>
|
|
<button class="pear-btn pear-btn-primary" round> Button-Three</button>
|
|
</div>
|
|
<br>
|
|
<br>
|
|
<div class="pear-btn-group">
|
|
<button class="pear-btn"> Button-One</button>
|
|
<button class="pear-btn"> Button-Two</button>
|
|
<button class="pear-btn"> Button-Three</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="layui-col-md12">
|
|
<div class="layui-card">
|
|
<div class="layui-card-header">
|
|
扩展进阶
|
|
</div>
|
|
<div class="layui-card-body">
|
|
<button class="pear-btn pear-btn-primary" plain> Button-One</button>
|
|
<button class="pear-btn pear-btn-success" plain> Button-Two</button>
|
|
<button class="pear-btn pear-btn-danger" plain> Button-Three</button>
|
|
<br>
|
|
<br>
|
|
<button class="pear-btn pear-btn-primary" round plain> Button-One</button>
|
|
<button class="pear-btn pear-btn-success" round plain> Button-Two</button>
|
|
<button class="pear-btn pear-btn-danger" round plain> Button-Three</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|