Loading...
📝 记录 /* 左侧图标颜色and彩色标签云 */ let tags = document.querySelectorAll("tag_cloud-2 a"); let infos = document.querySelectorAll(".bg-tag"); let colorArr = ["#3F51B5","#009688","#E91E63","#880E4F","#F06292","#9C27B0","#2196F3","#4CAF50"];
infos.forEach(info => { infosColor = colorArr[Math.floor(Math.random() * colorArr.length)]; info.style.backgroundColor = infosColor; });
来自小城市,个性不张扬,不求深刻,只求简单
📝 记录 /* 左侧图标颜色and彩色标签云 */
let tags = document.querySelectorAll("tag_cloud-2 a");
let infos = document.querySelectorAll(".bg-tag");
let colorArr = ["#3F51B5","#009688","#E91E63","#880E4F","#F06292","#9C27B0","#2196F3","#4CAF50"];
infos.forEach(info => {
infosColor = colorArr[Math.floor(Math.random() * colorArr.length)];
info.style.backgroundColor = infosColor;
});
一串不太重要的js代码