标签横线伸展开动画

.baseline {
    
    
  width: 100%;
  height: 5rpx;
  border-radius: 10rpx;
  background: #16BA98;
  animation: underFadeIn .3s;
}

@keyframes underFadeIn {
    
    
  0% {
    
    
    width: 0;
    left: 50%;
  }

  100% {
    
    
    width: 100%;
    left: 0;
  }
}

猜你喜欢

转载自blog.csdn.net/hql1024/article/details/107815316