Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

how to hide the cursor when the sentence finishes #225

Open
toanlv92 opened this issue Sep 5, 2024 · 3 comments
Open

how to hide the cursor when the sentence finishes #225

toanlv92 opened this issue Sep 5, 2024 · 3 comments

Comments

@toanlv92
Copy link

toanlv92 commented Sep 5, 2024

No description provided.

@UfukTanriverdi8
Copy link

import Typewriter from 'typewriter-effect'
import { useState } from 'react'

const Header = ( ) => {
    const [showCursor, setShowCursor] = useState(true)
    return (
          <Typewriter
            onInit={(typewriter) => {
              typewriter.typeString('this is a title')
              .pauseFor(300)
              .deleteChars(5)
              .typeString('<strong style="color: #e21936;">title</strong>')
              .pauseFor(1000)
              .callFunction(()=>setShowCursor(false)) // Hide cursor after typing
              .start()
            } } options={{
              delay: 'natural',
              cursor: showCursor ? "|" : "",
            }}
  />

tried something like this. but whenever i try to change the cursor property dynamically, the whole text just disappears.

@SarikaRamamoorthy
Copy link

SarikaRamamoorthy commented Oct 6, 2024

This is a temporary fix, but it hides the cursor entirely, and just types the characters

import Typewriter from 'typewriter-effect'

const Header = ( ) => {
    return (
          <Typewriter
            onInit={(typewriter) => {
              typewriter.typeString('this is a title')
              .pauseFor(300)
              .deleteChars(5)
              .typeString('<strong style="color: #e21936;">title</strong>')
              .pauseFor(1000)
              .start()
            } } options={{
              delay: 'natural',
              cursor: "",
            }}
  />

@Gerald-Hu
Copy link

You may substitute the typewriter instance with another element that contains the same contents.

<div className="flex w-full px-6">
  {!typewriterFinished ?
    <Typewriter
      onInit={(typewriter) => {
        typewriter.typeString(quote)
          .pauseFor(300)
          .callFunction(() => {
            setTypewriterFinished(true);
          })
          .start()
      }} options={{
        delay: 'natural',
        cursor: '|',
        wrapperClassName: "text-blue-300"
      }}
    />
    :
    <div>
      {quote}
    </div>
  }
</div>

Changing the prop passed to the instance (as you did) will hide the whole block, and this is a quick workaround :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants