How can I animate the drawing of text on a web page?

前端 未结 4 1408
情深已故
情深已故 2020-12-02 03:08

I want to have a web page which has one centered word.

I want this word to be drawn with an animation, such that the page \"writes\" the word out the same way that

4条回答
  •  一向
    一向 (楼主)
    2020-12-02 04:01

    Only CSS :

    @keyframes fadein_left {
      from {
        left: 0;
      }
      to {
        left: 100%;
      }
    }
    
    #start:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0%;
      opacity: 0.7;
      height: 25px;
      background: #fff;
      animation: fadein_left 3s;
    }
    some text some text some text some text some text

提交回复
热议问题