如何为光标设置自己的图像
How to set own image for a cursor
如果我为 css 文件中的标签设置光标,如下所示,它会按预期工作。如果光标移动到 Label
上,则光标为 "wait-cursor"
Label.mylabel:hover {
cursor: wait;
}
如 RWT-Theming-Reference 中所述,以下内容也应该可行
Label.mylabel:hover {
cursor: url( resources/cursor.gif );
}
但是我看不到光标。
如何为光标设置自己的图像?
如果我为 css 文件中的标签设置光标,如下所示,它会按预期工作。如果光标移动到 Label
上,则光标为 "wait-cursor"Label.mylabel:hover {
cursor: wait;
}
如 RWT-Theming-Reference 中所述,以下内容也应该可行
Label.mylabel:hover {
cursor: url( resources/cursor.gif );
}
但是我看不到光标。
如何为光标设置自己的图像?