Transition
How the tooltip moves between steps — fade or glide.
The tooltip transition controls how it moves from one step to the next. Fade hides the tooltip while transitioning, then fades it in at the new position. Glide keeps it visible and slides it smoothly.
Fade
await borda.mount({
steps: [...],
animation: {
tooltip: { transition: BordaTooltipTransition.FADE },
},
});
Glide
await borda.mount({
steps: [...],
animation: {
tooltip: { transition: BordaTooltipTransition.GLIDE },
},
});