工具提示ui/toolTip
工具提示类似 HTML 的 title 效果,可以在指针移上之后显示一些提示信息。
基本用法
import { VNode, render } from "ui/control";
import ToolTip from "ui/toolTip";
render(
__root__,
<div>
<button>按钮</button>
<ToolTip>工具提示</ToolTip>
</div>
);
更多选项见弹层控件。
样式
<div class="x-tooltip" style="display: inline-block; position: relative;">我是提示文案</div>
<div class="x-tooltip" style="display: inline-block; position: relative;"><span class="x-arrow x-arrow-top"></span>我是提示文案</div>
<div class="x-tooltip" style="display: inline-block; position: relative;"><span class="x-arrow x-arrow-bottom"></span>我是提示文案</div>
<div class="x-tooltip" style="display: inline-block; position: relative;"><span class="x-arrow x-arrow-left"></span>我是提示文案</div>
<div class="x-tooltip" style="display: inline-block; position: relative;"><span class="x-arrow x-arrow-right"></span>我是提示文案</div>
API
ToolTip 类
继承自:Popup
表示一个工具提示。
字段 | 类型 | 描述 | 继承自 |
---|---|---|---|
⮞
event
: "click" | "dblclick" | "auxclick" | "contextmenu" | "pointerdown" | "pointerup" | "pointerenter" | "pointermove" | "hover" | "active" | "focus" | "focusin" = "hover"
(已覆盖)触发弹层显示的事件。 说明
继承自 |
string
|
(已覆盖)触发弹层显示的事件。 |
Popup |
⮞
align
: PinAlign = "top"
|
PinAlign
|
(已覆盖)弹层对齐的位置。如果为 null 则不自动对齐。 |
Popup |
⮞
animation
: ToggleAnimation = "zoomOut"
|
ToggleAnimation
|
(已覆盖)显示弹层时使用的动画。 |
Popup |
⮞
target
: HTMLElement
|
HTMLElement
|
触发弹层显示的元素。 |
Popup |
⮞
delay
: number = 100
|
number
|
显示弹层的延时毫秒数。仅对指针移动事件有效。 |
Popup |
⮞
pinTarget
: Rect | HTMLElement | Document = target
|
Rect | HTMLElement | Document
|
弹层对齐的目标节点或区域。 |
Popup |
⮞
margin
: number = 0
|
number
|
元素的外边距,即对齐时元素和 pinTarget 的距离。 |
Popup |
⮞
container
: HTMLElement | Document = document
|
HTMLElement | Document
|
容器节点或区域,定位超出容器后会自动调整。 |
Popup |
⮞
containerPadding
: number = 0
|
number
|
容器的内边距。 |
Popup |
⮞
offset
: number = 0
|
number
|
定位后的额外偏移距离。如果小于 1,则表示相对元素大小的百分比。 |
Popup |
⮞
resize
: boolean = false
|
boolean
|
如果容器比元素小,是否允许更改元素大小。 |
Popup |
⮞
hideAnimation
: ToggleAnimation = animation
|
ToggleAnimation
|
隐藏弹层时使用的动画。 |
Popup |
⮞
hideDuration
: number = duration
|
number
|
隐藏动画的持续毫秒数。 |
Popup |
⮞
timingFunction
: string = "ease-in"
|
string
|
显示弹层时使用的动画渐变函数。 |
Popup |
⮞
hideTimingFunction
: string = timingFunction
|
string
|
隐藏弹层时使用的动画渐变函数。 |
Popup |
⮞
autoHide
: boolean = true
|
boolean
|
是否在点击屏幕空白处后消失。 |
Popup |
⮞
autoScroll
: boolean = true
|
boolean
|
是否在滚动后自动重定位。 |
Popup |
⮞
onShow
: (sender: ToolTip) => void
|
function
|
弹层显示事件。 |
Popup |
⮞
onHide
: (sender: ToolTip) => void
|
function
|
弹层隐藏事件。 |
Popup |
⮞
onAlign
: (r: PinResult, sender: ToolTip) => void
|
function
|
弹层对齐事件。 |
Popup |
⮞
disabled
: boolean
|
boolean
|
是否禁用弹窗效果。 |
Popup |
⮞
arrow
: boolean
|
boolean
|
是否显示箭头。 |
Popup |
⮞
arrowOffset
: number
|
number
|
箭头指向位置偏移。如果小于 1 则表示相对于定位目标元素的偏移。 |
Popup |
⮞
readyState
: ControlState
|
ControlState
|
获取当前控件的渲染状态。 |
Control |
⮞
elem
: HTMLElement
|
HTMLElement
|
关联的元素。 |
Control |
⮞
vNode
: VNode
|
VNode
|
(保护的)获取当前控件关联的虚拟节点。 |
Control |
⮞
sourceVNode
: VNode
|
VNode
|
获取创建该控件使用的源虚拟节点。 |
Control |
⮞
alwaysUpdate
: boolean
|
boolean
|
控件是否使用主动更新模式。 |
Control |
⮞
body
: HTMLElement
|
HTMLElement
|
(只读)获取用于包含子控件和节点的根元素。 |
Control |
⮞
duration
: number = 200
|
number
|
渐变的持续毫秒数。如果为 0 则不使用渐变。 |
Control |
⮞
class
: string
|
string
|
CSS 类名。 |
Control |
⮞
style
: string | { [key: string]: string | number; }
|
string | object
|
控件样式。 |
Control |
⮞
id
: string
|
string
|
控件序号。 |
Control |
⮞
content
: NodeLike
|
NodeLike
|
控件内容。 |
Control |
⮞
onSelectStart
: (e: Event, sender: ToolTip) => void
|
function
|
选择开始事件。 |
Control |
⮞
onClick
: (e: MouseEvent, sender: ToolTip) => void
|
function
|
点击事件。 |
Control |
⮞
onAuxClick
: (e: MouseEvent, sender: ToolTip) => void
|
function
|
中键点击事件。 |
Control |
⮞
onDblClick
: (e: MouseEvent, sender: ToolTip) => void
|
function
|
双击事件。 |
Control |
⮞
onContextMenu
: (e: PointerEvent, sender: ToolTip) => void
|
function
|
右键菜单事件。 |
Control |
⮞
onMouseDown
: (e: MouseEvent, sender: ToolTip) => void
|
function
|
鼠标按下事件。 |
Control |
⮞
onMouseUp
: (e: MouseEvent, sender: ToolTip) => void
|
function
|
鼠标按上事件。 |
Control |
⮞
onMouseOver
: (e: MouseEvent, sender: ToolTip) => void
|
function
|
鼠标移入事件。 |
Control |
⮞
onMouseOut
: (e: MouseEvent, sender: ToolTip) => void
|
function
|
鼠标移开事件。 |
Control |
⮞
onMouseEnter
: (e: MouseEvent, sender: ToolTip) => void
|
function
|
鼠标进入事件。 |
Control |
⮞
onMouseLeave
: (e: MouseEvent, sender: ToolTip) => void
|
function
|
鼠标离开事件。 |
Control |
⮞
onMouseMove
: (e: MouseEvent, sender: ToolTip) => void
|
function
|
鼠标移动事件。 |
Control |
⮞
onWheel
: (e: WheelEvent, sender: ToolTip) => void
|
function
|
鼠标滚轮事件。 |
Control |
⮞
onScroll
: (e: UIEvent, sender: ToolTip) => void
|
function
|
滚动事件。 |
Control |
⮞
onTouchStart
: (e: TouchEvent, sender: ToolTip) => void
|
function
|
触摸开始事件。 |
Control |
⮞
onTouchMove
: (e: TouchEvent, sender: ToolTip) => void
|
function
|
触摸移动事件。 |
Control |
⮞
onTouchEnd
: (e: TouchEvent, sender: ToolTip) => void
|
function
|
触摸结束事件。 |
Control |
⮞
onTouchCancel
: (e: TouchEvent, sender: ToolTip) => void
|
function
|
触摸撤销事件。 |
Control |
⮞
onPointerEnter
: (e: PointerEvent, sender: ToolTip) => void
|
function
|
指针进入事件。 |
Control |
⮞
onPointerLeave
: (e: PointerEvent, sender: ToolTip) => void
|
function
|
指针离开事件。 |
Control |
⮞
onPointerOver
: (e: PointerEvent, sender: ToolTip) => void
|
function
|
指针移入事件。 |
Control |
⮞
onPointerOut
: (e: PointerEvent, sender: ToolTip) => void
|
function
|
指针移开事件。 |
Control |
⮞
onPointerDown
: (e: PointerEvent, sender: ToolTip) => void
|
function
|
指针按下事件。 |
Control |
⮞
onPointerMove
: (e: PointerEvent, sender: ToolTip) => void
|
function
|
指针移动事件。 |
Control |
⮞
onPointerUp
: (e: PointerEvent, sender: ToolTip) => void
|
function
|
指针松开事件。 |
Control |
⮞
onPointerCancel
: (e: PointerEvent, sender: ToolTip) => void
|
function
|
指针取消事件。 |
Control |
⮞
onGotPointerCapture
: (e: PointerEvent, sender: ToolTip) => void
|
function
|
指针开始捕获事件。 |
Control |
⮞
onLostPointerCapture
: (e: PointerEvent, sender: ToolTip) => void
|
function
|
指针停止捕获事件。 |
Control |
方法 | 描述 | 继承自 |
---|---|---|
⮞
render()():
|
(保护的)(已覆盖)当被子类重写时负责返回当前控件的虚拟节点。 |
Popup |
⮞
layout()():
|
重新布局当前控件。 |
Control |
⮞
show()():
|
显示当前弹层。 |
Popup |
⮞
hide()():
|
隐藏当前弹层。 |
Popup |
⮞
toggle(...)(value?:
|
切换显示或隐藏当前弹层。 |
Popup |
⮞
realign()():
|
重新对齐弹层的位置。 |
Popup |
⮞
handleDocumentPointerDown(e)(e:
|
(保护的)处理文档指针按下事件。 |
Popup |
⮞
handleDocumentScroll(e)(e:
|
(保护的)处理文档滚动事件。 |
Popup |
⮞
init()():
|
(保护的)当被子类重写时负责在关联元素后初始化当前控件。 |
Control |
⮞
uninit()():
|
(保护的)当被子类重写时负责在元素被取消关联前取消初始化当前控件。 |
Control |
⮞
update()():
|
重新渲染当前控件。 |
Control |
⮞
invalidate()():
|
使当前控件无效并在下一帧重新渲染。 |
Control |
⮞
renderTo(parent, ...)(parent:
|
将当前控件渲染到指定的父控件或节点。 |
Control |
⮞
find(selector)(selector:
|
在当前控件查找指定的子控件或节点。 |
Control |
⮞
query(selector)(selector:
|
在当前控件查找匹配的所有子控件或节点。 |
Control |