Faisal Usman
Faisal Usman

Reputation: 95

how to show a jumping dots animation if the user doesn't write anything in 2 sec tip tap text editor?

I am trying to add dots animation on the tip tap editor. basically, my use case is when the user doesn't write anything then I want to show a dots animation to the user and then load some static sentence. enter image description here

Upvotes: -1

Views: 266

Answers (1)

Disco
Disco

Reputation: 1634

You would probably have to write your own extension (you can always search the web for a extension, prosemirror plugings might work as well).

I would suggest that you familiarise yourself with the current extensions provided by tiptap and then extend on of the existing ones to fill your needs.

Example to to use react components

Custom extensions Docs

Based on you comment it looks like you want to customize the Floating Menu extension. Github Docs

Try and implement it yourself first, that way you can share code and might be able to get better help with your issues.

Upvotes: 0

Related Questions