new: Added new tab pages and related modules

This commit is contained in:
yv1ing
2024-12-16 17:19:06 +08:00
parent c8fd4e9f2b
commit ff8a52e5a8
14 changed files with 1615 additions and 10 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,12 @@
const tagWordCloudCanvas = document.getElementById('tag-word-cloud-canvas');
const options = {
list: JSON.parse(tagList),
weightFactor: 20,
backgroundColor: 'transparent',
click: (item) => {
console.log(item[0], item[1]);
}
};
WordCloud(tagWordCloudCanvas, options);