--- title: cursor slug: Web/CSS/cursor translation_of: Web/CSS/cursor ---
{{CSSRef}}

此 cursor CSS 屬性可以指定當滑鼠指標指向哪個物件時,顯示不同的游標.

{{EmbedInteractiveExample("pages/css/cursor.html")}}

語法

/* 關鍵字值 */
cursor: pointer;
cursor: auto;

/* URL, with a keyword fallback */
cursor: url(hand.cur), pointer;

/* URL and coordinates, with a keyword fallback */
cursor: url(cursor1.png) 4 12, auto;
cursor: url(cursor2.png) 2 2, pointer;

/* 全域值 */
cursor: inherit;
cursor: initial;
cursor: unset;

The cursor property is specified as zero or more <url> values, separated by commas, followed by a single mandatory keyword value. Each <url> should point to an image file. The browser will try to load the first image specified, falling back to the next if it can't, and falling back to the keyword value if no images could be loaded (or if none were specified).

Each <url> may be optionally followed by a pair of space-separated numbers, which represent <x><y> coordinates. These will set the cursor's hotspot, relative to the top-left corner of the image.

For example, this specifies two images using <url> values, providing <x><y> coordinates for the second one, and falling back to the progress keyword value if neither image can be loaded:

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

數值

<url>
A url(…) or a comma separated list url(…), url(…), …, pointing to an image file. More than one {{cssxref("<url>")}} may be provided as fallbacks, in case some cursor image types are not supported. A non-URL fallback (one or more of the keyword values) must be at the end of the fallback list. See Using URL values for the cursor property for more details.
<x> <y> {{experimental_inline}}
Optional x- and y-coordinates. Two unitless nonnegative numbers less than 32.
關鍵字值

Move your mouse over values to see their live appearance in your browser:

分類 CSS 值 範例 備註說明
一般 auto   The UA will determine the cursor to display based on the current context. E.g., equivalent to text when hovering text.
default default.gif The platform-dependent default cursor. Typically an arrow.
none   No cursor is rendered.
連結與狀態 context-menu context-menu.png A context menu is available.
help help.gif Help information is available.
pointer pointer.gif The cursor is a pointer that indicates a link. Typically an image of a pointing hand.
progress progress.gif The program is busy in the background, but the user can still interact with the interface (in contrast to wait).
wait wait.gif The program is busy, and the user can't interact with the interface (in contrast to progress). Sometimes an image of an hourglass or a watch.
選取 cell cell.gif The table cell or set of cells can be selected.
crosshair crosshair.gif Cross cursor, often used to indicate selection in a bitmap.
text text.gif The text can be selected. Typically the shape of an I-beam.
vertical-text vertical-text.gif The vertical text can be selected. Typically the shape of a sideways I-beam.
拖曳 alias alias.gif An alias or shortcut is to be created.
copy copy.gif Something is to be copied.
move move.gif Something is to be moved.
no-drop no-drop.gif An item may not be dropped 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 The requested action will not be carried out.
grab grab.gif Something can be grabbed (dragged to be moved).
grabbing grabbing.gif Something is being grabbed (dragged to be moved).
改變尺寸與捲軸尺 all-scroll all-scroll.gif 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 them.
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-resize cursor is used when the movement starts from the south-east corner of the box.
In some environments, an equivalent bidirectional resize cursor is shown. For example, n-resize and s-resize are the same as ns-resize.
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 Bidirectional resize cursor.
ns-resize 6-resize.gif
nesw-resize 1-resize.gif
nwse-resize 4-resize.gif
縮放 zoom-in zoom-in.gif

Something can be zoomed (magnified) in or out.

zoom-out zoom-out.gif

公式語法

{{csssyntax}}

範例

.foo {
  cursor: crosshair;
}

.bar {
  cursor: zoom-in;
}

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

規格

Specification Status Comment
{{SpecName('CSS3 Basic UI', '#cursor', 'cursor')}} {{Spec2('CSS3 Basic UI')}} Addition of several keywords and the positioning syntax for url().
{{SpecName('CSS2.1', 'ui.html#cursor-props', 'cursor')}} {{Spec2('CSS2.1')}} Initial definition.

{{cssinfo}}

瀏覽器相容性

{{Compat("css.properties.cursor")}}

參照