1. 程式人生 > 其它 >ok-layer對layer.msg的二次封裝

ok-layer對layer.msg的二次封裝

 1 /**
 2          * msg()函式二次封裝
 3          */
 4         // msg彈窗預設消失時間
 5         time: 1000,
 6         // 綠色勾
 7         greenTickMsg: function (content, callbackFunction) {
 8             let options = {icon: 1, time: okLayer.time, anim: okLayer.animChoose()};
 9             layer.msg(content, options, callbackFunction);
10 }, 11 // 紅色叉 12 redCrossMsg: function (content, callbackFunction) { 13 let options = {icon: 2, time: okLayer.time, anim: okLayer.animChoose()}; 14 layer.msg(content, options, callbackFunction); 15 }, 16 // 黃色問號 17 yellowQuestionMsg: function
(content, callbackFunction) { 18 let options = {icon: 3, time: okLayer.time, anim: okLayer.animChoose()}; 19 layer.msg(content, options, callbackFunction); 20 }, 21 // 灰色鎖 22 grayLockMsg: function (content, callbackFunction) { 23 let options = {icon: 4, time: okLayer.time, anim: okLayer.animChoose()};
24 layer.msg(content, options, callbackFunction); 25 }, 26 // 紅色哭臉 27 redCryMsg: function (content, callbackFunction) { 28 let options = {icon: 5, time: okLayer.time, anim: okLayer.animChoose()}; 29 layer.msg(content, options, callbackFunction); 30 }, 31 // 綠色笑臉 32 greenLaughMsg: function (content, callbackFunction) { 33 let options = {icon: 6, time: okLayer.time, anim: okLayer.animChoose()}; 34 layer.msg(content, options, callbackFunction); 35 }, 36 // 黃色感嘆號 37 yellowSighMsg: function (content, callbackFunction) { 38 let options = {icon: 7, time: okLayer.time, anim: okLayer.animChoose()}; 39 layer.msg(content, options, callbackFunction); 40 },