鼠标形状css样式
鼠标形状css样式
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>鼠标形状css样式</title>
</head>
<body>
<div><a href="javascript:void(0);" title="cursor:hand" style="cursor:hand;">hand 手型</a></div>
<div><a href="javascript:void(0);" title="cursor:pointer" style="cursor:pointer;">pointer 手型</a></div>
<div><a href="javascript:void(0);" title="cursor:crosshair" style="cursor:crosshair;">crosshair 十字型</a></div>
<div><a href="javascript:void(0);" title="cursor:help" style="cursor:help;">help 问号</a></div>
<div><a href="javascript:void(0);" title="cursor:text" style="cursor:text;">text 文本</a></div>
<div><a href="javascript:void(0);" title="cursor:wait" style="cursor:wait;">wait 等待</a></div>
<div><a href="javascript:void(0);" title="cursor:default" style="cursor:default;">default 默认</a></div>
<div><a href="javascript:void(0);" title="cursor:e-resize" style="cursor:e-resize;">e-resize 向右箭头</a></div>
<div><a href="javascript:void(0);" title="cursor:ne-resize" style="cursor:ne-resize;">ne-resize 向右上的箭头</a></div>
<div><a href="javascript:void(0);" title="cursor:n-resize" style="cursor:n-resize;">n-resize 向上的箭头</a></div>
<div><a href="javascript:void(0);" title="cursor:nw-resize" style="cursor:nw-resize;">nw-resize 左上的箭头</a></div>
<div><a href="javascript:void(0);" title="cursor:w-resize" style="cursor:w-resize;">w-resize 向左的箭头</a></div>
<div><a href="javascript:void(0);" title="cursor:sw-resize" style="cursor:sw-resize;">sw-resize 向左下的箭头</a></div>
<div><a href="javascript:void(0);" title="cursor:s-resize" style="cursor:s-resize;">s-resize 向下的箭头</a></div>
<div><a href="javascript:void(0);" title="cursor:se-resize" style="cursor:se-resize;">se-resize 向右下的箭头</a></div>
<div><a href="javascript:void(0);" title="cursor:row-resize" style="cursor:row-resize;">row-resize</a></div>
<div><a href="javascript:void(0);" title="cursor:col-resize" style="cursor:col-resize;">col-resize</a></div>
<div><a href="javascript:void(0);" title="cursor:-webkit-grab" style="cursor:-webkit-grab;">-webkit-grab</a></div>
<div><a href="javascript:void(0);" title="cursor:grab" style="cursor:grab;">grab</a></div>
<div><a href="javascript:void(0);" title="cursor: move !important" style="cursor: move !important;">move</a></div>
<div><a href="javascript:void(0);" title="cursor: not-allowed" style="cursor: not-allowed;">not-allowed</a></div>
</body>
</html>
鼠标形状css样式的更多相关文章
- button按钮不能点击鼠标形状css 代码,禁用button按钮时鼠标形状
cursor:not-allowed;
- CSS(五):背景、列表、超链接伪类、鼠标形状控制属性
一.背景属性 1.背景属性用来设置页面元素的背景样式. 2.常见背景属性 属性 描述 background-color 用来设置页面的背景色,取值如red,#ff0000 background-ima ...
- 鼠标指针光标样式css cursor default pointer hand url
一.cursor语法与结构 1.cursor语法:cursor : auto | crosshair | default | hand | move | help | wait | text | w- ...
- 11种常用css样式之鼠标、列表和尺寸样式学习
鼠标cursor常见样式crosshair;/*十字形状*/cursor:pointer;/*小手形状*/cursor:wait;/*等待形状*/cursor:text;/*默认 文本形状*/curs ...
- DIV css中cursor属性详解-鼠标移到图片变换鼠标形状 (转)
css中cursor属性详解-鼠标移到图片变换鼠标形状 语法: cursor : auto | all-scroll | col-resize| crosshair | default | han ...
- 【css】cursor鼠标指针光标样式知识整理
在前端开发中,我们经常需要对对象鼠标指针光标进行控制,比如鼠标经过超链接时变成手指形状.在这里整理一下cursor鼠标指针光标样式的知识,记录与方便以后查找. 1.常用cursor光标 div( cu ...
- chrome DevTools 里面 css样式里面 勾上 :hover 会将鼠标移上的效果一直保持,技巧:要在鼠标上的 div上 勾 :hover
chrome DevTools 里面 css样式里面 勾上 :hover 会将鼠标移上的效果一直保持,技巧:要在鼠标上的 div上 勾 :hover
- Bootstrap3 CSS样式基本用法总结
按钮 a,input,button都可以设置为按钮 a标签按钮 button标签按钮 <a class="btn btn-default" href="#&qu ...
- css样式大全
字体属性:(font) 大小 {font-size: x-large;}(特大) xx-small;(极小) 一般中文用不到,只要用数值就可以,单位:PX.PD 样式 {font-style: obl ...
随机推荐
- 如何在C++ Builder中使用OpenGL
作者:太乙散数 摘要:用一个简单的例子,阐述了bcb中使用opengl的简单方法,包括初始化框架.旋转和平移图形.清除图像.初始化背景色以及在刷新时保持图像. 关键词:bcb6 opengl 旋转 清 ...
- 凝结时光:ImageMagick 制作 gif
从去年12.12开始,工作日都会从单位的落地窗向外拍一张照片,有点每日打卡的意思.weekday 是一天不落的,weekend 不是每次都到单位,落了几次. 想法来自上学的时候,有同学在同一个地方,拍 ...
- EditPlus 3设置字体大小
EditPlus设置字体大小 tools ---> preferences ---> fonts
- Django数据库迁移
如果你用过Django的数据库就会发现一个比较令人纠结的地方:数据库更改. 我们知道添加或者删除一个models.Model 需要在数据库里相应的操作,这需要我们进入数据库命令行手动添加或删除,因为s ...
- AMQP(Advanced Message Queuing Protocol)
一套确定的消息交换功能,也就是“高级消息交换协议模型”.AMQP模型包括一套用于路由和存储消息的功能模块,以及一套在这些模块之间交换消息的规则. 一个网络线级协议(数据传输格式),客户端应用可以通过这 ...
- CLR的组成和运转
CLR的组成和运转 clr基本 CLR(Common Language Runtime)是一个可由多种编程语言使用的“运行时”.(例如:c#,c++/cli,vb,f#,ironpython,iron ...
- Xcode5和ObjC新特性
Welcome to Xcode 5 这是我的WWDC2013系列笔记中的一篇,完整的笔记列表请参看这篇总览.本文仅作为个人记录使用,也欢迎在许可协议范围内转载或使用,但是还烦请保留原文链接,谢谢您的 ...
- Easyui表单验证扩展
简介: 使用Easyui,我们省了好多事情,不用为UI费心,只需要关注业务层面即可,下面是一些常用的验证方面的扩展,收藏下自己用 //重载$.fn.validatebox.defaults.rules ...
- 基于 WebSocket 构建跨浏览器的实时应用
Socket.IO – 基于 WebSocket 构建跨浏览器的实时应用 Socket.IO 是一个功能非常强大的框架,能够帮助你构建基于 WebSocket 的跨浏览器的实时应用.支持主流浏览器,多 ...
- jquery验证表单中的单选与多选
jquery验证表单中的单选与多选 这里所说的,用jquery去验证某一组多选至少要有一个选中,某一组单选至少有一个选中,,大家都知道单一的一个用js比较好验证,但是想要用jquery的验证并且用到j ...