Pop-Title

The Pop-Title component refers to a pop-up element that displays additional content or information when triggered by hovering over an element.

Options

pop-t

pop-t-d

Example Usage

<button class="button" pop-t="Click to show more contents !!!">Click</button>
<button class="button" pop-t="click me !!!" pop-t-d="1s">Click2</button>

In these examples, buttons with the class button are defined. When the user hovers over these buttons, a pop-up with the specified message (pop-t) will appear. The second button has an additional attribute pop-t-d set to "1s", which means the pop-up will appear after a delay of 1 second when hovered over. If pop-t-d is not specified, the default delay of 400ms will be applied.