MediaWiki:Common.js:修订间差异
来自McZoo红石站
无编辑摘要 标签:已被回退 |
无编辑摘要 标签:已被回退 |
||
第25行: | 第25行: | ||
}); | }); | ||
var _hmt = _hmt || []; | var _hmt = _hmt || []; | ||
(function() { | (function() { | ||
第33行: | 第33行: | ||
s.parentNode.insertBefore(hm, s); | s.parentNode.insertBefore(hm, s); | ||
})(); | })(); | ||
2024年6月26日 (三) 00:48的版本
/* 这里的任何JavaScript将为所有用户在每次页面载入时加载。 */
/* 不要脸的复制 */
/* 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);
});
});
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?178dc02e96d8533026f264ac2cf62ee0";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();