css cursor 的可选值(鼠标的各种样式)
|
crosshair; |
十字准心 |
The cursor render as a crosshair |
|
|
cursor: pointer; |
手 |
The cursor render as a pointer (a hand) that indicates a link |
|
|
cursor: wait; |
等待/沙漏 |
The cursor indicates that the program is busy (often a watch or an hourglass) |
|
|
cursor: help; |
帮助 |
The cursor indicates that help is available (often a question mark or a balloon) |
|
|
cursor: no-drop; |
无法释放 |
cursor: no-drop; |
|
|
cursor: text; |
文字/编辑 |
The cursor indicates text |
|
|
cursor: move; |
可移动对象 |
The cursor indicates something that should be moved |
|
|
cursor: n-resize; |
向上改变大小(North) |
The cursor indicates that an edge of a box is to be moved up (north) |
|
|
cursor: s-resize; |
向下改变大小(South) |
The cursor indicates that an edge of a box is to be moved down (south) |
|
|
cursor: e-resize; |
向右改变大小(East) |
The cursor indicates that an edge of a box is to be moved right (east) |
|
|
cursor: w-resize; |
向左改变大小(West) |
The cursor indicates that an edge of a box is to be moved left (west) |
|
|
cursor: ne-resize; |
向上右改变大小(North East) |
The cursor indicates that an edge of a box is to be moved up and right (north/east) |
|
|
cursor: nw-resize; |
向上左改变大小(North West) |
The cursor indicates that an edge of a box is to be moved up and left (north/west) |
|
|
cursor: se-resize; |
向下右改变大小(South East) |
The cursor indicates that an edge of a box is to be moved down and right (south/east) |
|
|
cursor: sw-resize; |
向下左改变大小(South West) |
The cursor indicates that an edge of a box is to be moved down and left (south/west) |
|
|
cursor: auto; |
自动 |
The browser sets a cursor |
|
|
cursor:not-allowed; |
禁止 |
cursor:not-allowed; |
|
|
cursor: progress; |
处理中 |
cursor: progress; |
|
|
cursor: default; |
系统默认 |
The default cursor (often an arrow) |
|
|
cursor: url(' # '); |
用户自定义(可用动画) |
The url of a custom cursor to be used. Note: Always define a generic cursor at the end of the list in case none of the url-defined cursors can be used |
css cursor 的可选值(鼠标的各种样式)的更多相关文章
- DIV css中cursor属性详解-鼠标移到图片变换鼠标形状 (转)
css中cursor属性详解-鼠标移到图片变换鼠标形状 语法: cursor : auto | all-scroll | col-resize| crosshair | default | han ...
- css Cursor:url()自定义鼠标指针样式为图片
css自定义鼠标指针样式为图片Cursor:url()的使用,今天在项目中,要用到自定义鼠标样式,格式: css:{cursor:url('绝对路径的图片(格式:cur,ico)'),-moz-zoo ...
- CSS cursor 属性--css html 鼠标手型,鼠标形状,鼠标效果,样式
css鼠标手型cursor中hand与pointer Example:CSS鼠标手型效果 <a href="#" style="cursor:hand"& ...
- 鼠标指针光标样式css cursor default pointer hand url
一.cursor语法与结构 1.cursor语法:cursor : auto | crosshair | default | hand | move | help | wait | text | w- ...
- 【css】cursor鼠标指针光标样式知识整理
在前端开发中,我们经常需要对对象鼠标指针光标进行控制,比如鼠标经过超链接时变成手指形状.在这里整理一下cursor鼠标指针光标样式的知识,记录与方便以后查找. 1.常用cursor光标 div( cu ...
- css cursor url用法格式详解
css cursor url用法格式:css:{cursor:url('图标路径'),auto;} //IE,FF,chrome浏览器都可以 实例代码:html{cursor: url("h ...
- CSS:CSS cursor 属性
ylbtech-CSS:CSS cursor 属性 1.返回顶部 1. 实例 一些不同的光标: span.crosshair {cursor:crosshair;} span.help {cursor ...
- 光标属性CSS cursor 属性
CSS cursor 属性 CSS cursor属性,以前不知道,如果以后用到自己看的 <html> <body> <p>请把鼠标移动到单词上,可以看到鼠标指针发生 ...
- 原来cursor:可以这样改变鼠标样式
前言:今天看百度的一个layui前端框架的时候,看到一个禁用图标的样式,鼠标移上去会变成一个自定义的图片样式,就在想难道cursor也可以自定义图片路径?!之前一直没有使用过. 使用了一下之后,遇到很 ...
随机推荐
- freemarker数字格式化
1.在模板中直接加.toString()转化数字为字符串,如:${languageList.id.toString()}: 2.在freemarker配置文件freemarker.properties ...
- STM32命名原则
每种STM32的产品都由16个字母或数字构成的编号标示,用户向ST订货时必须使用这个编号指定需要的产品.这16个字符分为8个部分,下面通过一个例子说明它们的意义: STM32 F 103 C ...
- Remoting&WebService的区别之处
Remoting与Web Services的区别是:(1)既支持TCP信道又支持HTTP信道,传输速度快(2)即可传输XML的SOAP包又可传输二进制流,效率高(3)Remoteing主要用于C/S结 ...
- c语言实现的协程
这几天突然对协程感兴趣,于是自己实现了一个,代码放在github上:https://github.com/adinosaur/Coro 协程是一种用户空间的非抢占式线程,主要用来解决等待大量的IO操作 ...
- Java小游戏贪吃蛇
package snake; import java.awt.BorderLayout;import java.awt.Canvas;import java.awt.Color;import java ...
- poll()函数的使用
分类: LINUX poll函数用于监测多个等待事件,若事件未发生,进程睡眠,放弃CPU控制权,若监测的任何一个事件发生,poll将唤醒睡眠的进程,并判断是什么等待事件发生,执行相应的操作.poll函 ...
- 《Spark MLlib机器学习实践》内容简介、目录
http://product.dangdang.com/23829918.html Spark作为新兴的.应用范围最为广泛的大数据处理开源框架引起了广泛的关注,它吸引了大量程序设计和开发人员进行相 ...
- MySQL 日期时间相关函数整理
-- 为日期增加一个时间间隔:date_add() SELECT NOW(); YEAR); MONTH); DAY); HOUR); MINUTE); SECOND); MICROSECOND); ...
- sprint one
产品backlog Id Name Imp Est How to demo 1 各个角色账号登录功能 30 20 建立数据库,数据库中存储一些角色的初始账号以便测试,输入账号密码,系统在数据库中查找账 ...
- UEditor-从客户端(editorValue="<p>asd</p>")中检测到有潜在危险的 Request.Form 值。
在用富文本编辑器时经常会遇到的问题是asp.net报的”检测到有潜在危险的 Request.Form 值“一般的解法是在aspx页面 page 标签中加上 validaterequest='fa ...