Typing Text Animation Using Only HTML & CSS

Sdílet
Vložit
  • čas přidán 12. 04. 2023
  • In this video, You will learn how to create an awesome multiple Text Typing Animation Using Only HTML & CSS
    -------------------------------------
    ◼️ Source code: www.darkcode.info/2023/04/typ...
    -------------------------------------
    Social Media Pages:
    ◼️ Facebook: / darkcode0
    ◼️ Instagram: / darkcodeonl. .
    -------------------------------------
    Support Me:
    ◼️ Paypal: paypal.me/YBenlachheb
    ◼️ Patreon: / darkcode
    -------------------------------------
    ◼️ Code Editor: VS Code
    ◼️ Packages installed: Emmet, Live Server
    ◼️ Color Theme Used: One Dark Pro
    -------------------------------------
    Music:
    Track: Jéja - Bad Habit (ft. Zaug) - Phonk Version [NCS Release]
    Music provided by NoCopyrightSounds.
    Watch: NCS.lnk.to/BadHabit-PhonkAT/yo...
    Free Download / Stream: ncs.io/BadHabit-Phonk

Komentáře • 26

  • @carlospaz3277
    @carlospaz3277 Před 3 měsíci

    Dude that's so cool

  • @IjazMasih-cv2ed
    @IjazMasih-cv2ed Před měsícem

    Thank you sooooooo much

  • @user75445
    @user75445 Před rokem +1

    🔥🔥

  • @carlosandresramirez9808
    @carlosandresramirez9808 Před rokem +3

    Thank you for the video DarkCode. Greetings❤👍👍👍👋👋👋

  • @user-dn6ng2yk4s
    @user-dn6ng2yk4s Před 5 měsíci

    Really useful 👍

  • @arturmoreira9716
    @arturmoreira9716 Před rokem +3

    Amazing brother, thanks

  • @dbldragon835
    @dbldragon835 Před rokem +1

    really nice, can you make it interactive ,like whatever user types ,it shows the same way,like i am spiderman,i am ironman,when a user types,spiderman or ironman

  • @jardeljeremiasjasse
    @jardeljeremiasjasse Před 4 měsíci

    cool

  • @wirat2011
    @wirat2011 Před rokem +1

    Thanks

  • @shoaibahmed5293
    @shoaibahmed5293 Před rokem

    Welcome back! 🎉

  • @marshallxzn3802
    @marshallxzn3802 Před rokem

    Is it my problem as I did using same code and same platform, why mine cant work this well?

  • @user-dr6vi6ms2t
    @user-dr6vi6ms2t Před 4 měsíci +1

    It's not work properly for me

  • @SunitaSharma0100
    @SunitaSharma0100 Před 9 měsíci

    code is not working🤔

  • @okorochimezirimchibuzo6040

    The code didn't work for me

    • @user-nr3lm1ug9j
      @user-nr3lm1ug9j Před 6 měsíci

      😂😂😂 u think any one of us got projects like this worked

  • @dopffishere
    @dopffishere Před 8 měsíci

    ban tinh roi a oi

  • @prosenjeetsarker
    @prosenjeetsarker Před 11 měsíci +1

    This is complex .

  • @SunitaSharma0100
    @SunitaSharma0100 Před 9 měsíci

    Is it my problem as I did using same code and same platform, why mine cant work this well?

    • @allanpires4362
      @allanpires4362 Před 9 měsíci

      for me worked:




      Text typing animation




      I'm a


      body{
      margin: 0;
      padding: 0;
      background-color: #2f3542;
      color: #fff;
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      font-family: 'Montserrat', sans-serif;
      }
      .animated-text{
      font-size: 20pt;
      font-weight: 600;
      min-width: 280px;
      }
      .animated-text span{
      position: relative;
      }
      .animated-text span::before{
      content: "CZcamsr";
      color: #ff7f50;
      animation: words 20s infinite;
      }
      .animated-text span::after{
      content: "";
      position: absolute;
      width: calc(100% + 8px);
      height: 100%;
      background-color: #2f3542;
      border-left: 2px solid #ff7f50;
      right: -8px;
      animation: cursor .8s infinite, typing 20s steps(14) infinite;
      }
      @keyframes cursor{
      to{
      border-left: 2px solid transparent;
      }
      }
      @keyframes words{
      0%, 20%{
      content: "CZcamsr";
      }
      21%, 40%{
      content: "Blogger";
      }
      41%, 60%{
      content: "Developer";
      }
      61%, 80%{
      content: "Designer";
      }
      81%, 100%{
      content: "Gamer";
      }
      }
      @keyframes typing{
      10%, 15%, 30%, 35%, 50%, 55%, 70%, 75%, 90%, 95%{
      width: 0;
      }
      5%, 20%, 25%, 40%, 45%, 60%, 65%, 80%, 85%{
      width: calc(100% + 8px);
      }
      }