|
|
(未显示同一档案员的22个中间版本) |
第1行: |
第1行: |
| /* 这里的任何JavaScript将为所有档案员在每次页面载入时加载。 */ | | /* 这里的任何JavaScript将为所有档案员在每次页面载入时加载。 */ |
|
| |
|
| function appendCSS(){ | | function appendCSS() { |
| var head = document.head || document.getElementsByTagName('head')[0]; | | var link = document.createElement('link'); |
| head += '<link rel="stylesheet" href="/extensions/Whiteverse/font/stylesheet.css" />'; | | link.rel = 'stylesheet'; |
| document.getElementsByTagName('head')[0].innerHTML += head; | | link.href = '/extensions/Whiteverse/font/stylesheet.css'; |
| | document.head.appendChild(link); |
| } | | } |
| appendCSS(); | | appendCSS(); |
|
| |
| // 引入 Vis Timeline 库
| |
| function appendTimeline(){
| |
| var head = document.head || document.getElementsByTagName('head')[0];
| |
| head += '<script src="https://unpkg.com/vis-timeline/standalone/umd/vis-timeline-graph2d.min.js"></script>';
| |
| document.getElementsByTagName('head')[0].innerHTML += head;
| |
| }
| |
| appendTimeline();
| |
|
| |
| $(document).ready(function() {
| |
| // 确保仅在有时间轴的页面中执行
| |
| if ($("#visualization").length) {
| |
| const container = document.getElementById("visualization");
| |
|
| |
| // 解析项目和日期
| |
| const itemsArray = $(container).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月28日 (一) 08:38的最新版本
/* 这里的任何JavaScript将为所有档案员在每次页面载入时加载。 */
function appendCSS() {
var link = document.createElement('link');
link.rel = 'stylesheet';
link.href = '/extensions/Whiteverse/font/stylesheet.css';
document.head.appendChild(link);
}
appendCSS();