欢迎来到奇葩栖息地!欢迎加入Discord服务器:XfrfHCzfbW。请先至特殊:参数设置验证邮箱后再进行编辑。在特殊:参数设置挑选自己想要使用的小工具!不会编辑?请至这里学习Wikitext语法。
MediaWiki:Common.js:修订间差异
来自奇葩栖息地
添加的内容 删除的内容
SkyEye FAST(讨论 | 贡献) (// Edit via Wikiplus) |
SkyEye FAST(讨论 | 贡献) (// Edit via InPageEdit) |
||
(未显示同一用户的2个中间版本) | |||
第1行: | 第1行: | ||
/* 这里的任何JavaScript将为所有用户在每次页面载入时加载。 */ |
/* 这里的任何JavaScript将为所有用户在每次页面载入时加载。 */ |
||
/** |
/* Debug */ |
||
* Pause animations on mouseover of a designated container (.animated-container) |
|||
* |
|||
* This is so people have a chance to look at the image and click on pages they want to view. |
|||
*/ |
|||
$( '#mw-content-text' ).on( 'mouseenter mouseleave', '.animated-container', function( e ) { |
|||
$( this ).find( '.animated' ).toggleClass( 'animated-paused', e.type === 'mouseenter' ); |
|||
} ); |
|||
/* [[Template:Tabs]] */ |
|||
$(".tabtable").each(function(i, e) { |
|||
var $table = $(e); |
|||
var $nav = $table.find(".tabtable-nav"); |
|||
$table.find(".tabtable-cell").each(function(i, e) { |
|||
var $cell = $(e); |
|||
var $tab = $("<div class='tabtable-tab'><span>" + $cell.attr("data-title") +"</span></div>"); |
|||
$nav.append($tab); |
|||
$tab.click(function() { |
|||
$table.find(".tabtable-cell").removeClass("active"); |
|||
$cell.addClass("active"); |
|||
$nav.find(".tabtable-tab").removeClass("active"); |
|||
$tab.addClass("active"); |
|||
}); |
|||
}); |
|||
$table.find(".tabtable-cell").first().addClass("active"); |
|||
$nav.find(".tabtable-tab").first().addClass("active"); |
|||
}); |
|||
/* debug */ |
|||
console.info('Common.js has been successfully loaded.'); |
console.info('Common.js has been successfully loaded.'); |