1. 程式人生 > 實用技巧 >滑鼠樣式大全

滑鼠樣式大全

<!doctype html>
<html>
<head>
    <meta charset="utf-8">
    <title>無標題文件</title>

    <style>
        ul,li{padding:10px;list-style:none;}
        li{border:1px solid red;}

        /*li{ cursor:pointer; }*/
    </style>

</head>

<body>

<ul
> <li style="cursor:auto">auto</li> <li style="cursor:crosshair">Crosshair</li> <li style="cursor:default"> Default</li> <li style="cursor:pointer"> Pointer</li> <li style="cursor:move"> Move</li> <li style="cursor:e-resize"
> e-resize</li> <li style="cursor:ne-resize"> ne-resize</li> <li style="cursor:nw-resize"> nw-resize</li> <li style="cursor:n-resize"> n-resize</li> <li style="cursor:se-resize"> se-resize</li> <li style="cursor:sw-resize">
sw-resize</li> <li style="cursor:s-resize"> s-resize</li> <li style="cursor:w-resize"> w-resize</li> <li style="cursor:text"> text</li> <li style="cursor:wait"> wait</li> <li style="cursor:help"> help</li> </ul> </body> </html>

原文:https://www.cnblogs.com/hangzhou728/p/11157586.html