zoukankan      html  css  js  c++  java
  • CSS鼠标手势大全


    实例:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">   
    <html xmlns="http://www.w3.org/1999/xhtml">   
        <head>   
            <title>CSS鼠标手势大全 - www.webdm.cn</title>   
    <style type="text/css">   
    <!--    
    span {display:block;line-height:30px;margin:5px 0;background:#f0f0f0;text-align:center;}   
    -->
    </style>   
        </head>   
    <body>   
             
    <span style="cursor:pointer;">手型</span>       
    <span style="cursor:hand;">手型</span>   
    <span style="cursor:crosshair;">crosshair 十字</span>   
    <span style="cursor:text;">text 文本</span>   
    <span style="cursor:wait;">wait 等待</span>   
    <span style="cursor:help;">help 问号</span>   
    <span style="cursor:e-resize;">e-resize 右的箭头</span>   
    <span style="cursor:ne-resize;">ne-resize 右上的箭头</span>   
    <span style="cursor:n-resize;">n-resize 上的箭头</span>   
    <span style="cursor:nw-resize;">nw-resize 左上的箭头</span>   
    <span style="cursor:w-resize;">w-resize 左的箭头</span>   
    <span style="cursor:sw-resize;">sw-resize 左下的箭头</span>   
    <span style="cursor:s-resize;">s-resize 下的箭头</span>   
    <span style="cursor:se-resize;">se-resize 右下的箭头</span>   
    <span style="cursor:move;">move 移动</span>   
    <br />   
    <p><a href="http://www.webdm.cn">网页代码站</a> - 最专业的代码下载网站 - 致力为中国站长提供有质量的代码!</p>   
    </body>   
    </html>
     
     

    cursor:hand 与 cursor:pointer 的效果是一样,都像手形光标。但用FireFox浏览时才注意到使用cursor:hand在FireFox里并被支持。
    cursor:hand :IE完全支持。但是在firefox是不支持的,没有效果。
    cursor:pointer :是CSS2.0的标准。所以firefox是支持的,但是IE5.0既之前版本不支持。IE6开始支持。

    附:cursor属性收集

    光标类型   CSS
    十字准心 cursor: crosshair;
    手 cursor: pointer;
    cursor: hand;
    写两个是为了照顾IE5,它只认hand。
    等待/沙漏 cursor: wait;
    帮助 cursor: help;
    无法释放 cursor: no-drop;
    文字/编辑 cursor: text;
    可移动对象 cursor: move;
    向上改变大小(North)   cursor: n-resize;
    向下改变大小(South)   cursor: s-resize;
    向右改变大小(East)   cursor: e-resize;
    向左改变大小(West)   cursor: w-resize;
    向上右改变大小(North East)   cursor: ne-resize;
    向上左改变大小(North West)   cursor: nw-resize;
    向下右改变大小(South East)   cursor: se-resize;
    向下左改变大小(South West)   cursor: sw-resize;
    自动 cursor: auto;
    禁止 cursor:not-allowed;
    处理中 cursor: progress;
    系统默认 cursor: default;
    用户自定义(可用动画) cursor: url(‘ # ‘);
    # = 光标文件地址    (注意文件格式必须为:.cur 或 .ani)。

  • 相关阅读:
    Global.asax 文件是什么
    C和C++语言学习总结
    iphone窗口传值
    c语言实现队列
    iphone窗口跳转
    NSStirng、NSArray、 文件 以及枚举(Method小集合)
    服务器接受的链接过多,该怎么处理
    c语言实现单链表
    iphone开发 NSXMLParser解析xml文件
    iphone 切换界面
  • 原文地址:https://www.cnblogs.com/Byrd/p/3494034.html
Copyright © 2011-2022 走看看