在瀏覽器中,光標對於提供交互反饋頗有用。經過在不一樣的場景中改變光標,就能賦予其不一樣的含義css
cursor光標html
值: [<uri>,]*[auto | default | pointer | crosshair | move | e-resize | ne-resize | nw-resize | n-resize | se-resize | sw-resize | s-resize | w-resize | text | wait | help | progress]] | inheritweb
初始值: autochrome
應用於: 全部元素瀏覽器
繼承性: 有ssh
CSS2提供了相對較少的選擇url
url: 自定義光標的URL default: 默認光標,一般是一個箭頭 auto: 瀏覽器自動識別的光標 crosshair : 十字線 pointer: 手型指針 move: 移動指針 e-resize: 向東移動指針 ne-resize: 向東北移動指針 nw-resize: 向西北移動指針 n-resize: 向北移動指針 se-resize: 向東南移動指針 sw-resize: 向西南移動指針 s-resize: 向南移動指針 w-resize: 向西移動指針 text: 文本指針 wait: 指示程序正忙 help: 幫助指針
CSS3增長了更多的cursor的樣式值spa
[注意]全部拓展樣式IE7-瀏覽器都不支持firefox
cursor:none (not IE8, Safari) cursor:context-menu (not Safari,Firefox,Chrome) cursor:cell (not Safari) cursor:alias (not Safari) cursor:copy (not IE,Safari) cursor:grab (not IE,Safari,Chrome) cursor:grabbing (not IE,Safari,Chrome) cursor:zoom-in (not IE,Safari) cursor:zoom-out (not IE,Safari) cursor:vertical-text cursor:no-drop cursor:not-allowed cursor:all-scroll cursor:ew-resize cursor:ns-resize cursor:nesw-resize cursor:nwse-resize cursor:col-resize cursor:row-resize
有些瀏覽器還提供了增長瀏覽器前綴的私有樣式指針
[注意]safari將-webkit-grab和-webkit-grabbing都解釋爲default
cursor:-webkit-grab; cursor: -moz-grab; cursor:-webkit-grabbing; cursor: -moz-grabbing; cursor:-webkit-zoom-in; cursor: -moz-zoom-in; cursor:-webkit-zoom-out; cursor: -moz-zoom-out;
全部瀏覽器都支持使用後綴名爲.cur的文件,chrome、firefox、safari還支持使用普通圖片製做光標
[注意]使用URL自定義樣式,後面必須跟有一個逗號和某個通用關鍵字
//錯誤 cursor: url('m.cur'); //正確 cursor: url('m.cur'),auto;
連接的默認光標是手型指針pointer,經過光標的變化能夠讓訪問者清楚的知道該元素是可點擊的
元素的title屬性用來提供元素的額外信息,配合help光標能夠獲得更好的表現方式
span[title]{ cursor: help; border-bottom: 1px solid gray; }
<div><span title="Cascading Style Sheets">CSS</span> is much too interesting</div>