magicButtons是一款带动画图标的jquery按钮插件。该jquery按钮插件在按钮被点击的时候,可以将按钮设置为不同的状态,可以显示动画图标,或改变显示文字,或改变按钮的尺寸。它的特点还有:
在页面中引入magicBtn.css和jquery以及magicBtn.js文件。
<link rel="stylesheet" href="css/magicBtn.css"> <script src="jquery.min.js"></script> <script src="magicBtn.js"></script>
然后在页面中添加按钮元素:
<button id="btn1" class="magicBtn">按钮</button>
在页面DOM元素加载完毕之后,通过下面的方法来初始化该Jquery按钮插件。
$.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 }
该jquery按钮插件的可用方法有:
var options = { loadginText: 'Your loading text', loadingIcon: bool(true), icon: '<i></i>' } $('#selector').startLoading(options);
初始文本作为一个属性保存在按钮的HTML标签上:<button data-initial-text="$text">$text</button>
。
如果设置了图标,那么文字参数不会起作用。
var options = { initialText: data-initial-text status: '',//One of success, warning, error. Empty for default. } $('#selector').resultLoading(options);
可以有四种类型的返回状态:
var options = { text: 'Your custom text for the button' } $('#selector').removeLoading(options);
var options = {} $('#selector').disabled(options);
<button class="block"></button>
$(selector).startLoading({ 'icon': '<i class="fas fa-cog rotating"></i>' })
该jquery按钮插件的github地址为:https://github.com/Spolaa/magicButtons