Auto&am"/> Auto&am">
透過 CSS 遊標屬性,您可以顯示十字線或加號、指標等。您可以嘗試執行以下程式碼來在CSS 中實作遊標屬性-
<html> <head> </head> <body> <div style = "cursor:auto">Auto</div> <div style = "cursor:crosshair">Crosshair</div> <div style = "cursor:default">Default</div> <div style = "cursor:pointer">Pointer</div> <div style = "cursor:move">Move</div> <div style = "cursor:e-resize">e-resize</div> <div style = "cursor:ne-resize">ne-resize</div> <div style = "cursor:nw-resize">nw-resize</div> <div style = "cursor:n-resize">n-resize</div> <div style = "cursor:se-resize">se-resize</div> <div style = "cursor:sw-resize">sw-resize</div> <div style = "cursor:s-resize">s-resize</div> <div style = "cursor:w-resize">w-resize</div> <div style = "cursor:text">text</div> <div style = "cursor:wait">wait</div> <div style = "cursor:help">help</div> </body> </html>
我們在上面新增了以下值-
描述 | |
---|---|
遊標的形狀取決於它所處的上下文區域結束了。例如,文字上的「I」、連結上的「手」等。 | |
十字線或加號 | |
一隻指向的手(在IE 4 中該值為手)。 | |
「I」欄 | |
遊標指示框的邊緣將向右(東)移動。 | |
遊標指示框的邊緣將會向上和向右移動(北/東)。 | |
遊標指示框的邊緣將會向上和向左移動(北/西)。 | |
遊標指示框的邊緣要向上(向北)移動。 | |
遊標指示框的邊緣向下和向右移動(南/東)。 | |
遊標指示框的邊緣向下和向左移動(南/西)。 | |
#遊標指示框的邊緣向下移動(向南) ). | |
遊標指示框的邊緣向左(往西)移動). | |
I 欄位。 | |
#一個沙漏。 | |
問號或氣球,非常適合在幫助按鈕上使用。 | |
#遊標圖片檔案來源。 |
以上是CSS 遊標屬性範例的詳細內容。更多資訊請關注PHP中文網其他相關文章!