“MediaWiki:Common.js”的版本间的差异
来自Whiteverse Library
跳到导航跳到搜索| 第15行: | 第15行: | ||
document.head.appendChild(script); | document.head.appendChild(script); | ||
} | } | ||
appendTimeline();$(document).ready(function() { | appendTimeline(); | ||
$(document).ready(function() { | |||
// 确保仅在有时间轴的页面中执行 | // 确保仅在有时间轴的页面中执行 | ||
if ($(".visualization").length) { | if ($(".visualization").length) { | ||
2024年10月24日 (四) 15:02的版本
/* 这里的任何JavaScript将为所有档案员在每次页面载入时加载。 */
function appendCSS() {
var link = document.createElement('link');
link.rel = 'stylesheet';
link.href = '/extensions/Whiteverse/font/stylesheet.css';
document.head.appendChild(link);
}
appendCSS();
// 引入 Vis Timeline 库
function appendTimeline() {
var script = document.createElement('script');
script.src = 'https://unpkg.com/vis-timeline@7.7.3/standalone/umd/vis-timeline-graph2d.min.js';
document.head.appendChild(script);
}
appendTimeline();
$(document).ready(function() {
// 确保仅在有时间轴的页面中执行
if ($(".visualization").length) {
var containers = document.getElementsByClassName("visualization");
for (var i = 0; i < containers.length; i++) {
(function(container) {
// 解析项目和日期
var itemsArray = $(container).data("items").split(";");
var items = new vis.DataSet(itemsArray.map(function(item, index) {
var parts = item.split(",");
var start = parts[0].trim();
var content = parts[1].trim();
// 处理文件链接和大小参数
content = content.replace(/(\[\[文件:(.*?)\|)(\d+x\d+)(\]\])/g, function(match, p1, p2, p3, p4) {
return p1 + p2 + p4 + ' style="width:' + p3.split('x')[0] + 'px; height:' + p3.split('x')[1] + 'px;"';
});
return { id: index + 1, content: content, start: start };
}));
// Configuration for the Timeline
var options = { locale: 'en' };
// Create a Timeline
var timeline = new vis.Timeline(container, items, options);
})(containers[i]);
}
}
});