• dechtman

    (@dechtman)


    Is it possible to keep the cursor blinking after the animation is complete?

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • vlfom

    (@vlfom)

    A simple workaround that I use is to style the cursor in the Custom CSS:

    .typed-cursor {
        -webkit-animation: blink 1s infinite !important;
        animation: blink 1s infinite !important;
    }
    
    @keyframes blink {
      from {
        opacity: 0;
      }
      to {
        opacity: 1
      }
    }
    @-webkit-keyframes blink {
      from {
        opacity: 0;
      }
      to {
        opacity: 1
      }
    }
    Thread Starter dechtman

    (@dechtman)

    thank you! Perfect.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Blinking cursor?’ is closed to new replies.