美文网首页
淡入样式

淡入样式

作者: Augenstern___ | 来源:发表于2019-05-05 15:31 被阅读0次
    @keyframes fadeInLeft {
        from {
          opacity: 0;
          transform: translate3d(-100%, -100, 0);
        }
    
        to {
          opacity: 1;
          transform: none;
        }
      }
    
    
    div{
          animation-duration: 1s;
          animation-fill-mode: both;
          animation-name: fadeInLeft;
    }
    

    注:定义好样式后 需要调用一下。

    淡入动画.png

    相关文章

      网友评论

          本文标题:淡入样式

          本文链接:https://www.haomeiwen.com/subject/hihhoqtx.html