1
0
mirror of https://gitee.com/coder-xiaomo/algorithm-visualization synced 2025-09-11 23:11:39 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee

添加水印

This commit is contained in:
2022-05-21 22:43:03 +08:00
parent 52ba2c7088
commit bed6c2b5c8
5 changed files with 51 additions and 1 deletions

View File

@@ -7,3 +7,17 @@ text {
svg {
user-select: none;
}
/* 元素鼠标悬浮样式 */
svg g:hover > rect {
fill: #ffafb6;
}
/* 右下角水印样式 */
svg #watermark-r-b{
opacity: 0.2;
transition: 0.2s;
}
svg #watermark-r-b:hover{
opacity: 0.8;
}