当前位置: 首页 > 工具软件 > Feathers UI > 使用案例 >

feathers ui 鼠标移出事件

仲孙诚
2023-12-01

//设置鼠标移出移入时设设置样式
var touch:Touch = e.getTouch(e.target as DisplayObject, TouchPhase.HOVER);
if (touch) {
Mouse.cursor = MouseCursor.HAND; //手掌型样式。
} else {
Mouse.cursor = MouseCursor.AUTO;
}

转载于:https://www.cnblogs.com/tankaixiong/archive/2013/02/19/2916648.html

 类似资料: