带动画图标的jquery按钮插件
源码介绍
magicButtons是一款带动画图标的jquery按钮插件。该jquery按钮插件在按钮被点击的时候,可以将按钮设置为不同的状态,可以显示动画图标,或改变显示文字,或改变按钮的尺寸。它的特点还有: 在页面中引入magicBtn.css和jquery以及magicBtn.js文件。 然后在页面中添加按钮元素: 在页面DOM元素加载完毕之后,通过下面的方法来初始化该Jquery按钮插件。 可用的配置参数有: 该jquery按钮插件的可用方法有: 初始文本作为一个属性保存在按钮的HTML标签上: 如果设置了图标,那么文字参数不会起作用。 可以有四种类型的返回状态: 该jquery按钮插件的github地址为:https://github.com/Spolaa/magicButtons简要教程
使用方法
<link rel="stylesheet" href="css/magicBtn.css">
<script src="jquery.min.js"></script>
<script src="magicBtn.js"></script>
HTML结构
<button id="btn1" class="magicBtn">按钮</button>
初始化插件
$.magicBtn(selector,options);
配置参数
options = {
buttonType: 'type', // 'material','outline'
rounded: false, // (bool) - add class '.round', border-radius: 5px
fill: false // Just for 'outline', fill effect on button:hover
}
方法
1、loading加载方法
var options = {
loadginText: 'Your loading text',
loadingIcon: bool(true),
icon: '<i></i>'
}
$('#selector').startLoading(options);
<button data-initial-text="$text">$text</button>
。 2、返回结构状态
var options = {
initialText: data-initial-text
status: '',//One of success, warning, error. Empty for default.
}
$('#selector').resultLoading(options);
3、移除loading
var options = {
text: 'Your custom text for the button'
}
$('#selector').removeLoading(options);
4、Disabled状态
var options = {}
$('#selector').disabled(options);
5、块级按钮
<button class="block"></button>
6、图标旋转
$(selector).startLoading({
'icon': '<i class="fas fa-cog rotating"></i>'
})
本站资源均来自互联网,仅供研究学习,禁止违法使用和商用,产生法律纠纷本站概不负责!如果侵犯了您的权益请与我们联系!
转载请注明出处: 免费源码网-免费的源码资源网站 » 带动画图标的jquery按钮插件
发表评论 取消回复