CSS 2.1 快速導覽 - 滑鼠游標 cursor

cursor 性質 (property) 為 CSS 中用來設定滑鼠游標的樣式 (style) ,可使用 url() 函數載入圖檔或是以下關鍵字 (keyword)

  • auto
  • crosshair
  • default
  • pointer
  • move
  • e-resize
  • ne-resize
  • nw-resize
  • n-resize
  • se-resize
  • sw-resize
  • s-resize
  • w-resize
  • text
  • wait
  • help
  • progress


下面為各種滑鼠游標樣式測試區
auto
crosshair
default
pointer
move
e-resize
ne-resize
nw-resize
n-resize
se-resize
sw-resize
s-resize
w-resize
text
wait
help
progress


另舉一例如下
div {
    display: inline-block;
    width: 45%;
    height: 45%;    
}

div.ex1 {
    cursor: help;
    background: red;
}

div.ex2 {
    cursor: wait;
    background: green;
}

div.ex3 {
    cursor: pointer;
    background: blue;
}

div.ex4 {
    cursor: crosshair;
    background: yellow;
}    

/* 《程式語言教學誌》的範例程式
    http://pydoing.blogspot.com/
    檔名:cursor01.css
    功能:示範 CSS 2.1 樣式表的使用 
    作者:張凱慶
    時間:西元 2011 年 7 月 */


我們以下面的 HTML 文件載入
<html>
<head>
<title>網頁標題</title>
<link rel="stylesheet" type="text/css" 
      href="cursor01.css">
</head>
<body>
<div class="ex1"></div>
<div class="ex2"></div>
<div class="ex3"></div>
<div class="ex4"></div>
</body>
</html>

<!-- 《程式語言教學誌》的範例程式
     http://pydoing.blogspot.com/
     檔名:cursor01.html
     功能:示範 CSS 2.1 樣式表的使用 
     作者:張凱慶
     時間:西元 2011 年 7 月 -->


瀏覽器 (broswer) 開啟如下



中英文術語對照
性質property
元素element
瀏覽器broswer


您可以繼續參考

JavaScript 範例

自訂內容 content
引號 quotes
滑鼠游標 cursor
外框 outline


相關目錄
CSS 2.1 快速導覽
HTML, CSS 教材
首頁


參考資料
http://www.w3.org/TR/CSS21/generate.html
https://developer.mozilla.org/en/CSS/quotes

沒有留言: