MediaWiki:Common.js:修订间差异
来自McZoo红石站
(清空全部内容) 标签:清空 |
无编辑摘要 |
||
第1行: | 第1行: | ||
/* 这里的任何JavaScript将为所有用户在每次页面载入时加载。 */ | |||
/* 不要脸的复制 */ | |||
/* 首页头图+打印文字 */ | |||
if (mw.config.get('wgPageName') === '首页') { | |||
importScript( 'MediaWiki:Mainpage.js' ); | |||
} | |||
if (mw.config.get('wgPageName') === '首页') { | |||
mw.loader.load('/index.php?title=MediaWiki:Mainpage.css&action=raw&ctype=text/css', 'text/css'); | |||
} | |||
/* sitenotice from huoqibaike.com*/ | |||
$(function () { | |||
var self = $('#siteNoticeScroll'); | |||
if (!self[0]) return; | |||
var ul = self.find('ul:first'); | |||
ul.width(self.width() * self.find('li').length).attr({ | |||
'data-left': 0, | |||
'data-length': self.find('li').length | |||
}).find('li').width(self.width()); | |||
window.setInterval(function () { | |||
var dataset = ul[0].dataset, | |||
oldLeft = +dataset.left; | |||
ul.css('marginLeft', -(++oldLeft * self.width()) + 'px').delay(730).queue(function () { | |||
dataset.left = oldLeft === +dataset.length - 1 ? -1 : oldLeft; | |||
$(this).dequeue(); | |||
}); | |||
}, 5000); | |||
$(window).on('resize', function () { | |||
ul.width(self.width() * self.find('li').length).animate({ | |||
marginLeft: -((+ul[0].dataset.left === -1 ? 0 : +ul[0].dataset.left) * self.width()) + 'px' | |||
}, 370); | |||
}); | |||
}); |
2024年3月2日 (六) 21:19的版本
/* 这里的任何JavaScript将为所有用户在每次页面载入时加载。 */
/* 不要脸的复制 */
/* 首页头图+打印文字 */
if (mw.config.get('wgPageName') === '首页') {
importScript( 'MediaWiki:Mainpage.js' );
}
if (mw.config.get('wgPageName') === '首页') {
mw.loader.load('/index.php?title=MediaWiki:Mainpage.css&action=raw&ctype=text/css', 'text/css');
}
/* sitenotice from huoqibaike.com*/
$(function () {
var self = $('#siteNoticeScroll');
if (!self[0]) return;
var ul = self.find('ul:first');
ul.width(self.width() * self.find('li').length).attr({
'data-left': 0,
'data-length': self.find('li').length
}).find('li').width(self.width());
window.setInterval(function () {
var dataset = ul[0].dataset,
oldLeft = +dataset.left;
ul.css('marginLeft', -(++oldLeft * self.width()) + 'px').delay(730).queue(function () {
dataset.left = oldLeft === +dataset.length - 1 ? -1 : oldLeft;
$(this).dequeue();
});
}, 5000);
$(window).on('resize', function () {
ul.width(self.width() * self.find('li').length).animate({
marginLeft: -((+ul[0].dataset.left === -1 ? 0 : +ul[0].dataset.left) * self.width()) + 'px'
}, 370);
});
});