Reputation: 95
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.
Upvotes: -1
Views: 266
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
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