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也可以自定义图片路径?!之前一直没有使用过. 使用了一下之后,遇到很 ...
随机推荐
- commons-io ProxyInputStream,ProxyOutputStream,ProxyReader,ProxyWriter
1.ProxyInputStream: A Proxy stream which acts as expected, that is it passes the method calls on to ...
- mysql操作查询结果case when then else end用法举例
Case具有两种格式.简单Case函数和Case搜索函数. --简单Case函数 CASE sex WHEN '1' THEN '男' WHEN '2' THEN ...
- 可以结合react的ui组件
https://ant.design/components/switch-cn/
- [CentOS 7] 安装nginx
下载对应当前系统版本的nginx包(package) # wget http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-cent ...
- forever让nodejs应用后台执行
nodejs一般是当成一条用户命令执行的,当用户断开客户连接,运用也就停了,很烦人.如何让nodejs应用当成服务,在后台执行呢? 最简单的办法: $ nohup node app.js & ...
- jeesite部署到Tomcat后,无法访问,cannot be resolved in either web.xml or the jar files deployed with this application
HTTP Status 500 - /WEB-INF/views/modules/sys/sysLogin.jsp (line: 3, column: 0) The absolute uri: htt ...
- 【JAVA】【leetcode】【查找二叉树最小深度】
题目: minimum-depth-of-binary-tree 要求:Given a binary tree, find its minimum depth.The minimum depth i ...
- (转)JavaScript中的运算符优先级
JavaScript中的运算符优先级是一套规则.该规则在计算表达式时控制运算符执行的顺序.具有较高优先级的运算符先于较低优先级的运算符执行.例如,乘法的执行先于加法. 下表按从最高到最低的优先级列出J ...
- for循环每次展示固定条数的数据的写法。
第一种是一组json数据实现分页的效果,也就是每一次展示5条数据.第二种场景是每一秒展示4条数据,直到全部显示完.两种思路都做个笔记记录下. var nums = 5; //每页出现的数量 var p ...
- Scala学习 —— 元组&映射
再说集合之前,我们先来回顾一下映射&元祖 映射是键/值对偶的集合,Scala有一个通用的叫法--元组,也就是n个对象的聚集,并不一定要相同类型的.对偶不过是一个n=2的元祖.元祖对于那种需要将 ...