- UID
- 2031
- 注册
- 2022/12/12
- 消息
- 23
- 黄金
- 238G
- 中国
- 广东省
- 广州市 网友
- #1
过程:
1.找到模板:extra.less
2.添加代码
3.享受
1.找到模板:extra.less
2.添加代码
CSS:
/* 动画在线 */
.message-avatar-online:after
{
content: '';
position: absolute;
width: 32px;
height: 32px;
margin: -10px 0 0 -18px;
border: 1px solid #7fb900;
border-radius: 50%;
box-shadow: 0 0 4px #7fb900, inset 0 0 4px #7fb900;
-webkit-transform: scale(0);
-webkit-animation: online 2.5s ease-in-out infinite;
animation: online 2.5s ease-in-out infinite;
}
@-webkit-keyframes online
{
0% {opacity: 1;-webkit-transform: scale(0)}
50% {opacity: .7}
100% {opacity: 0;-webkit-transform: scale(1)}
}
@keyframes online
{
0% {opacity: 1;transform: scale(0)}
50% {opacity: .5}
100% {opacity: 0;transform: scale(1)}
}
打赏用户
