<button type="button" class="hui-button">普通按钮</button>
点击按钮后出现Loading动画,并能够对提交中进行判断,避免重复提交。dom 结构和普通按钮一样,使用js来控制Loading效果:
<button type="button" class="hui-button" id="btn1">Loading按钮</button>
功能:在普通按钮上产生loading效果
参数:提示内容
返回:无
功能:判断按钮是否处于加载状态
参数:无
返回:布尔类型 true / false
功能:恢复按钮原始状态
参数:无
返回:无
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>HUI - 按钮组件</title>
<link rel="stylesheet" type="text/css" href="../css/hui.css" />
</head>
<body>
<header class="hui-header"><div id="hui-back"></div><h1>HUI - 按钮组件</h1>
</header>
<div class="hui-wrap"><div class="hui-common-title" style="margin-top:15px;"><div class="hui-common-title-line"></div><div class="hui-common-title-txt">按钮组件演示</div><div class="hui-common-title-line"></div></div><div style="padding:28px 20px 10px 20px;" id="btnList1"><button type="button" class="hui-button hui-fl">普通按钮</button><button type="button" class="hui-button hui-danger hui-fl" style="margin-left:10px;">警告按钮</button><button type="button" class="hui-button hui-primary hui-fl" style="margin-left:10px;">主要按钮</button></div><div style="padding:1px 20px;" id="btnList2"><button type="button" class="hui-button hui-button-large" style="margin-top:15px;">宽度100%的按钮</button><button type="button" class="hui-button hui-button-large hui-primary" style="margin-top:15px;">宽度100%的按钮</button><button type="button" class="hui-button hui-button-large hui-danger" style="margin-top:15px;">宽度100%的按钮</button><button type="button" class="hui-button hui-button-large" style="margin-top:15px;" disabled="disabled">禁用的按钮</button></div><div style="padding:10px 20px;"><button type="button" class="hui-button hui-button-large" style="margin-top:15px;" id="loadingBtn1">loading按钮</button><button type="button" class="hui-button hui-button-large" style="margin-top:15px;" id="loadingBtn2">点击后loading并自动还原</button><button type="button" class="hui-button hui-button-large" style="margin-top:15px;"><span class="hui-icons hui-icons-warn"></span>图标按钮</button></div><div style="padding:10px 20px;"><button type="button" class="hui-button hui-button-small hui-fl">小按钮</button><button type="button" class="hui-button hui-button-small hui-danger hui-fl" style="margin:0px 10px;">小按钮</button><button type="button" class="hui-button hui-button-small hui-primary hui-fl">小按钮</button></div>
</div>
<script src="../js/hui.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript">
hui('#btnList1').find('button').click(function(){ast('ok');});
hui('#btnList2').find('button').click(function(){ast(');});
hui('#loadingBtn1').loadingButton();
hui('#loadingBtn2').click(function(){if(hui(this).buttonIsLoading()){return false;}hui(this).loadingButton('加载中...');setTimeout(function(){hui('#loadingBtn2').resetLoadingButton();}, 2000);
});
</script>
</body>
</html>
本文发布于:2024-01-29 12:47:47,感谢您对本站的认可!
本文链接:https://www.4u4v.net/it/170650367215386.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
留言与评论(共有 0 条评论) |