The Pop-Title
component refers to a pop-up element that displays additional content or information when triggered by hovering over an element.
pop-t
pop-t="Click to show more contents !!!"
pop-t-d
500ms
) or seconds (e.g., 1s
).400ms
pop-t-d="1s"
<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.