Stay tuned for the new Free Subscribe
  • Over 1000+ Expertly Crafted Free & Premium Digital Products

    Trusted marketplace for amazing and unique scripts, responsive blogger templates, wordpress themes, and more...

    JavaScript Animated Typing

    Please wait 0 seconds...
    Scroll Down and click on Go to Link for destination
    Congrats! Link is Generated

    JavaScript Animated Typing


    JavaScript Text Typing Animation | Typewriter Effect

    HTML JavaScript Typewriter Text Scrolling, Text Typing Animation

    1

    Add Your Message Text/HTML

    2

    Messages drag list up/down to reorder

    • 1
    • 2
    • 3
    3

    Preview Typing Animation

    Loading Google Font
    4

    Add Styles

    Hidden
    Loading...
    Google Font Link
    HTML
    Paste this code between the body tag where you want it to appear
    CSS
    Paste this code between the head tag
    JavaScript
    Paste this code between the body tag, at the bottom of the page

    Powered by Dev Chandel
    Welcome To Dev Chandel, Web Development & Design, Training Services, Android Application Development, Software Development, Designing Services, Digital Marketing Services, Bookkeeping Services, Consultancy Services, Training Services, IT Support, Digital Printing Services, Much More Services Provided By Dev Chandel.If you want Premium Code Please Click Here => Dev Chandel

    JavaScript Text Typing And Deleting Effect

    HTML
    <textarea id="typing-deleting-text" readonly></textarea>
    CSS
    #typing-deleting-text {
      width: 500px;
      height: 30px;
      font-size: 15px;
      border: solid 1px #C9C9C9;
      color: #000000;
      background-color: #FFFFFF;
      text-align: left;
      font-family: Arial;
      font-weight: bold;
      padding: 5px;
      resize: none;
      outline: none;
      box-sizing: border-box;
    }
    JavaScript
    (() => {
        let CharacterPos = 0;
        let MsgBuffer = "";
        let TypingSpeed = 50; // Millisecond
        let NxtMsgDelay = 1000; // Millisecond
        let MsgIndex = 0;
        let delay;
        let deletePos = 1;
        let deleteSpeed = 5; // Millisecond
        let id = document.getElementById("typing-deleting-text");
    
        let messages = [
          "Welcome to GoojDex Tools!",
          "JavaScript Typewriter Text Scrolling Generator",
          "Online HTML Code Generator"
        ];
    
        const StartTyping = () => {
            if (CharacterPos != messages[MsgIndex].length) {
                MsgBuffer += messages[MsgIndex].charAt(CharacterPos);
                id.value = MsgBuffer + (CharacterPos != messages[MsgIndex].length - 1 ? "_" : "");
                delay = TypingSpeed;
                id.scrollTop = id.scrollHeight; //auto scroll bottom
            } else {
                deletePos = 1;
                setTimeout(deleteTyping, NxtMsgDelay);
                return;
            }
            CharacterPos++;
            setTimeout(StartTyping, delay);
        };
        const deleteTyping = () => {
            if (deletePos != messages[MsgIndex].length) {
                id.value = messages[MsgIndex].slice(0, -deletePos);
            } else {
                MsgBuffer = "";
                CharacterPos = 0;
                if (MsgIndex != messages.length - 1) {
                    MsgIndex++;
                } else {
                    MsgIndex = 0;
                }
                StartTyping();
                return;
            }
            deletePos++;
            setTimeout(deleteTyping, deleteSpeed);
        };
        StartTyping();
    })();

    ***Get Tools Code***

    GoojDex- JavaScript Animated Typing Size:-> 53Kb
    Password => GoojDex123


    vertical_align_bottom Premium Code
    If you encounter any problem, do not hesitate to contact us

    ©Copyright: Dev Chandel™

    Post a Comment

    Cookie Consent
    We serve cookies on this site to analyze traffic, remember your preferences, and optimize your experience.
    Oops!
    It seems there is something wrong with your internet connection. Please connect to the internet and start browsing again.
    AdBlock Detected!
    We have detected that you are using adblocking plugin in your browser.
    The revenue we earn by the advertisements is used to manage this website, we request you to whitelist our website in your adblocking plugin.
    Site is Blocked
    Sorry! This site is not available in your country.