Animated Tooltip

A Vue component that creates an animated tooltip with a dynamic hover effect.

Usage

Hover for Tooltip

Props

PropTypeDefaultDescription
offset
Number
0Adjust offset for tooltip position.
class
String
undefinedAdditional CSS classes to apply to the container.

Slots

SlotDescription
defaultContent to be displayed inside the main element.
tooltipContent to be displayed inside the tooltip.

Customization

You can customize the AnimatedTooltip component in several ways:

  • Use the default slot to define the main content.
  • Use the tooltip slot to define the content of the tooltip.
  • Adjust the CSS variables in the <style> section to modify the animations and appearance:
    • --transition: Controls the timing function of the animations.
    • --rotate: Controls the rotation of the tooltip (set dynamically).
    • --translateX: Controls the horizontal translation of the tooltip (set dynamically).

Styling

The component uses SCSS for styling. Key style features include:

  • A gradient underline effect for the tooltip.
  • Scale transformation for the main content on hover.
  • Smooth entrance and exit animations for the tooltip.

You can further customize the appearance by modifying the SCSS in the <style> section of the component.