CSS的一些常用样式,如背景、文字、文本、表格、列表等,以及一些常用的场景,如居中对齐、溢出、隐藏元素等。01、常用样式 1.1、background背景 设置元素背景的样式 background,更
顺晟科技
2022-09-13 13:44:21
151
1
1
cursorCSS属性定义鼠标指针悬浮在元素上时的外观。https://developer.mozilla.org/zh-CN/docs/Web/CSS/cursor
概述
cursorCSS属性定义鼠标指针悬浮在元素上时的外观。
初始值 auto适用元素 all elements是否是继承属性 yes适用媒体 visual, interactive计算值 as specified, but with URIs made absolute是否适用于 CSS 动画 否正规顺序 the unique non-ambiguous order defined by the formal grammar语法
如何阅读 CSS 语法。
Formal syntax: [ [ <uri> [<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 ] ]值
- <
uri>url(…)或者逗号分隔的url(…), url(…), …,指向图片文件。用大于一个<uri>值提供后备,以防某些指针图片类型不被支持。最后必须提供一个非URL后备值。详情参见cursor属性中使用URL值。<x><y>- 可选 x,y坐标。无单位数字。
- 关键字值
鼠标悬浮于值上测试效果:
类型 CSS值 描述 Generalauto
浏览器根据当前内容决定指针样式
例如当是内容是文字时使用text样式default默认指针,通常是箭头。
none无指针被渲染 链接及状态context-menu指针下有可用内容目录。只有windows中的IE 10有效。
help指示帮助
pointer悬浮于连接上时,通常为手
progress程序后台繁忙,用户仍可交互 (与
wait不同).wait程序繁忙(沙漏或表) 选择
cell指示单元格可被选中
crosshair交叉指针,通常指示位图中的框选
text指示文字可被选中
vertical-text指示垂直文字课被选中 拖拽
alias复制或快捷方式将要被创建
copy指示可复制
move被悬浮的物体可被移动
no-drop当前位置不能扔下
bug 275173Windows中 "no-drop 与not-allowed相同".not-allowed不能执行 重设大小及滚动
all-scroll元素可任意方向滚动 (平移).
bug 275174Windows中, "all-scroll 与 move相同".col-resize元素可被重设宽度。通常被渲染为中间有一条竖线分割的左右两个箭头
row-resize![]()
元素可被重设高度。通常被渲染为中间有一条横线分割的上下两个箭头
n-resize某条边将被移动。例如元素盒的东南角被移动时
使用se-resizee-resize![]()
s-resize![]()
w-resize![]()
ne-resize![]()
nw-resize![]()
se-resize![]()
sw-resize![]()
ew-resize指示双向重新设置大小
ns-resize![]()
nesw-resize![]()
nwse-resize缩放
zoom-in![]()
指示可被放大或缩小
zoom-out![]()
- Mozilla特定关键字
Grab
-moz-grab元素可被抓起
不推荐在公开网页上使用这些指针。
使用自定图片指针会提供更好的浏览器兼容性
-moz-grabbing元素被握住
示例
查看在线演示
.foo { cursor: crosshair; } /* use prefixed-value if "zoom-in" isn\'t supported */ .bar { cursor: -webkit-zoom-in; cursor: -moz-zoom-in; cursor: zoom-in; } /* standard cursor value as fallback for url() must be provided (doesn\'t work without) */ .baz { cursor: url(hyper.cur), auto }规范
规范 状态 备注 CSS Basic User Interface Module Level 3
cursor Candidate Recommendation 增加了一些关键字,位置语法及url()CSS Level 2 (Revision 1)
cursor Recommendation 首次定义浏览器兼容性
Feature Chrome (WebKit) Firefox (Gecko) Internet Explorer Opera Safari auto,crosshair,default,move,text,wait,help,n-resize,e-resize,s-resize,w-resize,ne-resize,nw-resize,se-resize,sw-resize1.0 1.0 (1.0) 4.0 7.0 1.2hand(just usepointerfor this purpose) 未实现 未实现 4.0 未实现 未实现pointer,progress1.0 1.0 (1.0|1.7) 6.0 7.x 1.2 | 3.0url()- See Using URL values 1.0 (523) 1.5 (1.8)
On MacOs 4.0 (2.0). 6.0 未实现 3.0 Positioning syntax forurl()values ? (Yes) 未实现 ? ?not-allowed,no-drop,vertical-text,all-scroll,col-resize,row-resize1.0 (522) 1.5 (1.8) 6.0 10.6 3.0alias,cell,copy,ew-resize,ns-resize,nesw-resize,nwse-resize,context-menu1.0 (522 )[1] 1.5 (1.8 )[1] 未实现 10.6 [1] 3.0 [2]none5.0 (533) 3.0 (1.9) 9.0 未实现 5.0 [2]inherit1.0 1.0 8.0 9.0 1.2zoom-in,zoom-out1.0 (522) -webkit- 1.0 (1.4) -moz- 未实现 11.6 3.0 -webkit-[1] Windows中的Mozilla和WebKit不适用
context-menu, Opera中可用。
[2]alias,cell,copy,none在Windows Safari不适用, Mac中可用。参见
- Using URL values for the cursor property
pointer-events- Webkit\'s cursor demos (including the extended ones:
zoom,zoom-out,grab,grabbing)- Cursor Property (MSDN)
- CSS 2.1 and CSS 3 cursor propery test
1
1
1
1
1
1
1
1
1
1
1
1
1
09
2022-11
24
2022-10
19
2022-10
07
2022-10
07
2022-10
15
2022-09