为文章外部的标签添加随机彩色效果

综合评论3,385,732字数 174阅读0分34秒

为文章外部的标签添加随机彩色效果

/*文章外部标签随机彩色*/
.item-tags a {
  padding: 5px 10px;
  border-radius: 5px;
  margin-right: 5px;
}

.item-tags a.meta-pay {
  background-color: #FFD700;  
  color: black;
}

.item-tags a.c-blue {
  background-color: #1E90FF;  
  color: white;
}

.item-tags a[href*="tag/"] {
  background-color: #FF69B4;  
  color: white;
}

javascript

var links = document.querySelectorAll('.item-tags a');

for (var i = 0; i < links.length; i++) {
  var randomColor = '#' + Math.floor(Math.random()*16777215).toString(16);
  links[i].style.backgroundColor = randomColor;
}

使用方法:

将上述CSS代码添加至zibil主题设置–全局&功能–自定义代码–自定义CSS样式中即可文章源自小武站https://1z345.cn/小武站-https://bbs.50-0.cn/847.html

将上述javascript代码添加至zibil主题设置–全局&功能–自定义代码–自定义javascript代码中即可文章源自小武站https://1z345.cn/小武站-https://bbs.50-0.cn/847.html

有单色需求自己改代码即可,大佬轻喷。文章源自小武站https://1z345.cn/小武站-https://bbs.50-0.cn/847.html 文章源自小武站https://1z345.cn/小武站-https://bbs.50-0.cn/847.html

一体同心(61集)
一体同心(61集) 综合

一体同心(61集)

我用夸克网盘分享了「15933-一体同心(61集)」,点击链接即可保存。打开「夸克APP」,无需下载在线播放视频,畅享原画5倍速,支持电视投屏。链接:https://pan.quark.cn/s/4d...
  • 本文由 admin 发表于 2024年8月17日 04:07:09
  • 转载请务必保留本文链接:https://bbs.50-0.cn/847.html
  • 彩色效果
匿名

发表评论

匿名网友
:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:
确定