“Html:Notify”的版本间的差异
来自小鱼君和他的朋友们
小 ([InPageEdit] 没有编辑摘要) |
|||
第6行: | 第6行: | ||
if (typeof(ssi_modal) !== 'undefined') { | if (typeof(ssi_modal) !== 'undefined') { | ||
ssi_modal.notify('{{{type|}}}',{ | ssi_modal.notify('{{{type|}}}',{ | ||
+ | className: 'custom-notify', | ||
+ | sizeClass: '{{{size|full}}}', | ||
+ | position: '{{{position|top center}}}', | ||
title: '{{{title|}}}', | title: '{{{title|}}}', | ||
content: '{{{content|}}}', | content: '{{{content|}}}', |
2019年11月20日 (三) 03:42的版本
//
// 以一秒十次的频率疯狂尝试调用ssi-modal,直到插件加载完毕 window.addEventListener('load',function(){ var postNotify = setInterval(function(){ if (typeof(ssi_modal) !== 'undefined') { ssi_modal.notify('',{ className: 'custom-notify', sizeClass: 'full', position: 'top center', title: '', content: '', closeAfter: { time: 15 } }); clearInterval(postNotify); } },100); });