模板:HiddenText/styles.css:修订间差异
来自RIA | Wiki
更多操作
CSS |
感觉黑幕的切换太慢了 |
||
| 第2行: | 第2行: | ||
background-color: rgb(0, 0, 0); | background-color: rgb(0, 0, 0); | ||
color: rgb(0, 0, 0); | color: rgb(0, 0, 0); | ||
transition: background 0. | transition: background 0.2s; | ||
} | } | ||
.template-hiddentext:hover { /* 鼠标移动/触摸元素时使背景变透明 */ | .template-hiddentext:hover { /* 鼠标移动/触摸元素时使背景变透明 */ | ||
| 第9行: | 第9行: | ||
.template-hiddentext a { /* 链接, 似乎没啥意义 */ | .template-hiddentext a { /* 链接, 似乎没啥意义 */ | ||
color: rgb(16,16,32); | color: rgb(16, 16, 32); | ||
transition: color 0.5s; | transition: color 0.5s; | ||
} | } | ||
2022年4月15日 (五) 18:02的版本
.template-hiddentext {
background-color: rgb(0, 0, 0);
color: rgb(0, 0, 0);
transition: background 0.2s;
}
.template-hiddentext:hover { /* 鼠标移动/触摸元素时使背景变透明 */
background-color: transparent;
}
.template-hiddentext a { /* 链接, 似乎没啥意义 */
color: rgb(16, 16, 32);
transition: color 0.5s;
}
.template-hiddentext:hover a { /* 链接, 似乎没啥意义 */
color: #0645ad;
}