今天新发现一个鼠标样式 not-allowed,是一个红色的圈加一个斜杠,表示禁止的意思,似乎IE,chrome firefox 都能够正常显示,很好用
详细使用:
Syntax
/* Keyword value only */
cursor: pointer;
cursor: auto;
/* Using URL and coordinates */
cursor: url(cursor1.png) 4 12, auto;
cursor: url(cursor2.png) 2 2, pointer;
Values
- <
uri> - A
url(…)or a comma separated listurl(…), url(…), …, pointing to an image file. More than one<uri>may be provided as fallback, in case some cursor image types are not supported. A non-URL fallback (one or more of the other values) must be at the end of the fallback list. See Using URL values for the cursor property for more details. <x><y>- Optional x- and y-coordinates. Two unit-less non-negative numbers less than 32.
- Keyword values
-
Move mouse over value for testing:
Category CSS value Description General autoThe browser determines the cursor to display based on the current context.
E.g. equivalent totextwhen hovering text.default![default.gif]()
Default cursor, typically an arrow. noneNo cursor is rendered. Links & status context-menu![context-menu.png]()
A context menu is available under the cursor.
Only IE 10 and up have implemented this on Windows: bug 258960.help![help.gif]()
Indicating help is available. pointer![pointer.gif]()
E.g. used when hovering over links, typically a hand. progress![progress.gif]()
The program is busy in the background but the user can still interact with the interface (unlike for wait).wait![wait.gif]()
The program is busy (sometimes an hourglass or a watch). Selection cell![cell.gif]()
Indicating that cells can be selected. crosshair 十字准心![crosshair.gif]()
Cross cursor, often used to indicate selection in a bitmap. text![text.gif]()
Indicating text can be selected, typically an I-beam. vertical-text![vertical-text.gif]()
Indicating that vertical text can be selected, typically a sideways I-beam. Drag and drop alias![alias.gif]()
Indicating an alias or shortcut is to be created. copy![copy.gif]()
Indicating that something can be copied. move![move.gif]()
The hovered object may be moved. no-drop![no-drop.gif]()
Cursor showing that a drop is not allowed at the current location.
bug 275173 on Windows and Mac OS X, "no-drop is the same as not-allowed".not-allowed![not-allowed.gif]()
Cursor showing that something cannot be done. Resize & scrolling all-scroll![all-scroll.gif]()
Cursor showing that something can be scrolled in any direction (panned).
bug 275174 on Windows, "all-scroll is the same as move".col-resize![col-resize.gif]()
The item/column can be resized horizontally. Often rendered as arrows pointing left and right with a vertical bar separating. row-resize![row-resize.gif]()
The item/row can be resized vertically. Often rendered as arrows pointing up and down with a horizontal bar separating them. n-resize![Example of a resize towards the top cursor]()
Some edge is to be moved. For example, the se-resizecursor is used when the movement starts from the south-east corner of the box.e-resize![Example of a resize towards the right cursor]()
s-resize![Example of a resize towards the bottom cursor]()
w-resize![Example of a resize towards the left cursor]()
ne-resize![Example of a resize towards the top-right corner cursor]()
nw-resize![Example of a resize towards the top-left corner cursor]()
se-resize![Example of a resize towards the bottom-right corner cursor]()
sw-resize![Example of a resize towards the bottom-left corner cursor]()
ew-resize![3-resize.gif]()
Indicates a bidirectional resize cursor. ns-resize![6-resize.gif]()
nesw-resize![1-resize.gif]()
nwse-resize![4-resize.gif]()
Zoom zoom-in![zoom-in.gif]()
Indicates that something can be zoomed (magnified) in or out.
zoom-out![zoom-out.gif]()
Grab grab![grab.gif]()
Indicates that something can be grabbed (dragged to be moved).
grabbing![grabbing.gif]()
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 ] ]
Examples
.foo { cursor: crosshair; }
/* use prefixed-value if "zoom-in" isn't supported */
.bar { cursor: -webkit-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 }


































浙公网安备 33010602011771号