cursor - CSS(层叠样式表) 编辑

cursor CSS 属性设置光标的类型(如果有),在鼠标指针悬停在元素上时显示相应样式。

语法

/* 关键字值 */
cursor: pointer;
cursor: auto;

/* 使用URL,并提供一个关键字值作为备用 */
cursor: url(hand.cur), pointer;

/* URL和xy的坐标偏移值,最后提供一个关键字值作为备用 */
cursor:  url(cursor1.png) 4 12, auto;
cursor:  url(cursor2.png) 2 2, pointer;

/* 全局属性 */
cursor: inherit;
cursor: initial;
cursor: unset;

cursor属性为零个或多个<url>值,它们之间用逗号分隔,最后必填一个关键字值。每个<url>指向一个图像文件。浏览器将尝试加载指定的第一个图像,如果无法加载则返回下一个图像,如果无法加载图像或未指定图像,则使用关键字值代表的指针类型。

每个<url>后面都可选跟一对空格分隔的数字<x><y>表示偏移。它们用来设置指针的热点(即自定义图标的实际点击位置),位置相对于图标的左上角。

例如,下面的例子使用<url>值指定两个图像,为第二个图像提供<x><y>坐标,如果两个图像都无法加载,则返回progress关键字值:

cursor: url(one.svg), url(two.svg) 5 5, progress;

<url>
url(…)或者逗号分隔的url(…), url(…), …,指向图片文件。用大于一个<url>值提供后备,以防某些指针图片类型不被支持。最后必须提供一个非URL后备值。详情参见cursor属性中使用URL值
<x> <y>
可选 x,y坐标。两个小于32的无单位非负数。
关键字值

   鼠标悬浮于值上可实时演示

类型CSS值描述
Generalauto

浏览器根据当前内容决定指针样式
例如当是内容是文字时使用text样式

defaultdefault.gif默认指针,通常是箭头。
none无指针被渲染
链接及状态context-menucontext-menu.png指针下有可用内容目录。
helphelp.gif指示帮助
pointerpointer.gif悬浮于连接上时,通常为手
progressprogress.gif程序后台繁忙,用户仍可交互 (与wait相反).
waitwait.gif程序繁忙,用户不可交互 (与progress相反).图标一般为沙漏或者表。
选择cellcell.gif指示单元格可被选中
crosshaircrosshair.gif交叉指针,通常指示位图中的框选
texttext.gif指示文字可被选中
vertical-textvertical-text.gif指示垂直文字可被选中
拖拽aliasalias.gif复制或快捷方式将要被创建
copycopy.gif指示可复制
movemove.gif被悬浮的物体可被移动
no-dropno-drop.gif当前位置不能扔下
bug 275173Windows或Mac OS X中 "no-drop 与not-allowed相同".
not-allowednot-allowed.gif不能执行
grabgrab.gif

可抓取

译者注:grab和grabbing在比较后期才被支持,见浏览器兼容表

grabbinggrabbing.gif抓取中
重设大小及滚动all-scrollall-scroll.gif元素可任意方向滚动 (平移).
bug 275174Windows中, "all-scrollmove相同".
col-resizecol-resize.gif元素可被重设宽度。通常被渲染为中间有一条竖线分割的左右两个箭头
row-resizerow-resize.gif

元素可被重设高度。通常被渲染为中间有一条横线分割的上下两个箭头

n-resizeExample of a resize towards the top cursor某条边将被移动。例如元素盒的东南角被移动时使用se-resize
e-resizeExample of a resize towards the right cursor
s-resizeExample of a resize towards the bottom cursor
w-resizeExample of a resize towards the left cursor
ne-resizeExample of a resize towards the top-right corner cursor
nw-resizeExample of a resize towards the top-left corner cursor
se-resizeExample of a resize towards the bottom-right corner cursor
sw-resizeExample of a resize towards the bottom-left corner cursor
ew-resize3-resize.gif指示双向重新设置大小
ns-resize6-resize.gif
nesw-resize1-resize.gif
nwse-resize4-resize.gif
缩放zoom-inzoom-in.gif

指示可被放大或缩小

zoom-outzoom-out.gif

语法形式

[ [ <url> [ <x> <y> ]? , ]* [ auto | default | none | context-menu | help | pointer | progress | wait | cell | crosshair | text | vertical-text | alias | copy | move | no-drop | not-allowed | e-resize | n-resize | ne-resize | nw-resize | s-resize | se-resize | sw-resize | w-resize | ew-resize | ns-resize | nesw-resize | nwse-resize | col-resize | row-resize | all-scroll | zoom-in | zoom-out | grab | grabbing ] ]

注意事项

尽管规范没有为游标定义任何大小限制,但是不同的user agents可能进行了限制。 使用超出浏览器支持的大小范围的图像进行的光标更改通常只会被忽略。

查阅 Browser compatibility 表格来获取指针大小的限制信息。

示例

.foo {
  cursor: crosshair;
}

.bar {
  cursor: zoom-in;
}

/* A fallback keyword value is required when using a URL */
.baz {
  cursor: url("hyper.cur"), auto;
}

规范

规范状态备注
CSS Basic User Interface Module Level 3
cursor
Recommendation增加了一些关键字,url()的位置语法
CSS Level 2 (Revision 1)
cursor
Recommendation首次定义

浏览器兼容性

BCD tables only load in the browser

The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.

参见

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:64 次

字数:23904

最后编辑:6年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文