首页 话题 小组 问答 好文 用户 我的社区 域名交易

[美化]lightsns的手机端loading美化代码

发布于 2024-11-12 15:39:29
0
106

各位也可以从这里选取喜欢的loading然后替换相应的css即可  https://juejin.cn/post/7037036742985121800

.jinsom-loading-post i:nth-child(n+2){
    display:none;
}
.jinsom-loading-post i:nth-child(1){
    background-color: unset;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background-color: #000;
 
  animation: ball-scale infinite linear 0.75s;
}
@keyframes ball-scale {
  0% {
    transform: scale(0.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
评论
站长交流