“MediaWiki:Common.js”的版本间的差异
来自Whiteverse Library
跳到导航跳到搜索第14行: | 第14行: | ||
} | } | ||
appendCSS(); | appendCSS(); | ||
$(document).ready(function() { | |||
const container = document.getElementById("visualization"); | |||
// 解析项目和日期 | |||
const itemsArray = $("#visualization").data("items").split(";"); | |||
const items = new vis.DataSet(itemsArray.map((item, index) => { | |||
const [content, start] = item.split(","); | |||
return { id: index + 1, content: content.trim(), start: start.trim() }; | |||
})); | |||
// Configuration for the Timeline | |||
const options = {}; | |||
// Create a Timeline | |||
const timeline = new vis.Timeline(container, items, options); | |||
}); |
2024年10月24日 (四) 09:50的版本
/* 这里的任何JavaScript将为所有档案员在每次页面载入时加载。 */ var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?78ca329a3fecd1dcb9111ff260d46658"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); function appendCSS(){ var head = document.head || document.getElementsByTagName('head')[0]; head += '<link rel="stylesheet" href="/extensions/Whiteverse/font/stylesheet.css" />'; document.getElementsByTagName('head')[0].innerHTML += head; } appendCSS(); $(document).ready(function() { const container = document.getElementById("visualization"); // 解析项目和日期 const itemsArray = $("#visualization").data("items").split(";"); const items = new vis.DataSet(itemsArray.map((item, index) => { const [content, start] = item.split(","); return { id: index + 1, content: content.trim(), start: start.trim() }; })); // Configuration for the Timeline const options = {}; // Create a Timeline const timeline = new vis.Timeline(container, items, options); });