- 欢迎来到偶像大师中文维基,本站仍在筹备阶段,如有兴趣参与建设可加群申请账号:542540342
MediaWiki:Gadget-Popup.js:修订间差异
跳转到导航
跳转到搜索
创建页面,内容为“$().ready(function(){ $('.wm-tooltips').each(function (i, e) { if(!e.children || e.children.length < 2){ return; } e.children[1].style.display = 'block'; var _appendTo; if(e.children[1].dataset.appendTo == 'parent') { _appendTo = 'parent'; } else if(e.children[1].dataset.appendTo) { _appendTo = document.querySelector(e.children[1].dataset.appendTo); } var args = { content: e.children[1],…” |
小无编辑摘要 |
||
第23行: | 第23行: | ||
args.appendTo = _appendTo; | args.appendTo = _appendTo; | ||
} | } | ||
tippy6(e.children[0], args); | |||
}); | }); | ||
}); | }); |
2025年9月3日 (三) 10:14的最新版本
$().ready(function(){
$('.wm-tooltips').each(function (i, e) {
if(!e.children || e.children.length < 2){
return;
}
e.children[1].style.display = 'block';
var _appendTo;
if(e.children[1].dataset.appendTo == 'parent') {
_appendTo = 'parent';
} else if(e.children[1].dataset.appendTo) {
_appendTo = document.querySelector(e.children[1].dataset.appendTo);
}
var args = {
content: e.children[1],
arrow: true,
theme: 'light-border',
size: 'large',
maxWidth: parseInt(e.children[1].dataset.size),
trigger: e.children[1].dataset.trigger||'mouseenter focus',
interactive: !!e.children[1].dataset.interactive || false,
}
if(_appendTo){
args.appendTo = _appendTo;
}
tippy6(e.children[0], args);
});
});