Components

A set of reusable components for web applications

<px-tooltip>

A control that creates a pop-up element to display information for an element.

Examples

Simple tooltips.

This tooltip is the default tooltip.

This tooltip is placed on top.

This tooltip is placed on bottom.

This tooltip is placed on left.

This tooltip is placed on right.

<px-flex-panel orientation="vertical">
  <p>This tooltip is the <px-tooltip text="I am the default">default</px-tooltip> tooltip.</p>
  <p>This tooltip is placed on <px-tooltip text="I am placed on the top" placement="top">top</px-tooltip>.</p>
  <p>This tooltip is placed on <px-tooltip text="I am placed on the bottom" placement="bottom">bottom</px-tooltip>.</p>
  <p>This tooltip is placed on <px-tooltip text="I am placed on the left" placement="left">left</px-tooltip>.</p>
  <p>This tooltip is placed on <px-tooltip text="I am placed on the right" placement="right">right</px-tooltip>.</p>
</px-flex-panel>