鼠标形状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>

hand 手型

pointer 手型

crosshair 十字型

help 问号

text 文本

wait 等待

default 默认

e-resize 向右箭头

ne-resize 向右上的箭头

n-resize 向上的箭头

nw-resize 左上的箭头

w-resize 向左的箭头

sw-resize 向左下的箭头

s-resize 向下的箭头

se-resize 向右下的箭头

row-resize

col-resize

-webkit-grab

grab

move

not-allowed

时间: 2024-10-06 15:43:08

鼠标形状css样式的相关文章

CSS声明 列表样式 显示方式 鼠标形状

列表样式 list-style-type list-style-image 显示方式: 默认显示方式 改变显示方式 鼠标形状: 如何改变属性形状 cursor属性 list-style-type: 该属性控制列表中列表项标志的样式 无序列表 有序列表 list-style-image 该属性使用图像替换列表项的标志 取值为:URL(),制定图像有序或无序列表项的标志 列表样式代码: <!doctype html> <html> <head> <title>列

CSS中cursor 鼠标指针光标样式(形状)

在前端开发中,我们经常需要对对象鼠标指针光标进行控制,比如鼠标经过超链接时变成手指形状.在这里整理一下cursor鼠标指针光标样式的知识,记录与方便以后查找. 常用cursor光标 url 需使用的自定义光标的 URL. 注释:请在此列表的末端始终定义一种普通的光标,以防没有由 URL 定义的可用光标. default 默认光标(通常是一个箭头)auto 默认.浏览器设置的光标.crosshair 光标呈现为十字线.pointer 光标呈现为指示链接的指针(一只手)move 此光标指示某对象可被

css cursor鼠标指针光标样式default pointer hand url

我们在DIV CSS布局时候,我们会遇到对对象内鼠标指针光标进行控制,比如鼠标经过指针变为手指形状等样式,接下来我们介绍鼠标指针样式cursor控制.系统默认鼠标指针样式外,可以通过CSS设置图片为鼠标指针,常见有些网站鼠标指针是各种各样小图片样式,当然这个是通过css cursor设置鼠标样式. 详见网站介绍:http://www.divcss5.com/rumen/r427.shtml css cursor鼠标指针光标样式default pointer hand url,布布扣,bubuko

CSS 鼠标形状

css样式中鼠标形状的改变是通过cursor属性来决定的,如下所示: cursor: auto.hand.pointer.crosshair.default.text.vertical-text.wait.move.help.row-resize.col-resize.all-scroll.progress.not-allowed.no-drop. 解释说明hand:手型,通常用户将光标移到超链接上时那样pointer:和hand一样,它的兼容性更好.crosshair:十字型default:

DIV css中cursor属性详解-鼠标移到图片变换鼠标形状 (转)

css中cursor属性详解-鼠标移到图片变换鼠标形状 语法: cursor : auto | all-scroll | col-resize| crosshair | default | hand | move | help | no-drop | not-allowed | pointer | progress | row-resize | text | vertical-text | wait | *-resize | url ( url )  取值: auto  :   默认值.浏览器根

【css】cursor鼠标指针光标样式知识整理

在前端开发中,我们经常需要对对象鼠标指针光标进行控制,比如鼠标经过超链接时变成手指形状.在这里整理一下cursor鼠标指针光标样式的知识,记录与方便以后查找. 1.常用cursor光标 1 div( cursor:default;} //默认正常鼠标指针 2 div( hand;}和div( cursor:text;} //文本选择效果 3 div( cursor:move;} //移动选择效果 4 div( cursor:pointer;} //手指形状 5 div( cursor:url("

网站开发综合技术 第二部分 CSS样式表

第2部分 CSS样式表 CSS(Cascading Style Sheets,层叠样式表),作用是美化HTML网页. /*注释*/    注释语法 2.1.样式表的基本概念 2.1.1.样式表分类 1.内联样式表 和html联合显示,控制精确,但是可重用性差,冗余多. 例:<p style="font-size:14px;">内联样式表</p> 2.内嵌样式表 作为一个独立区域内嵌在网页里,必须写在head标签里边. <style type= "

bootstrap全局css样式

以下从官网抄来的,感觉还是很实用的,运用得好,灵活运用,非常方便快捷,能大大提高开发效率,也为调整不同尺寸的屏幕节省了时间. hidden-xs @media (max-width: 767px){ .hidden-xs { display: none!important; } } @media (max-width: 991px) and (min-width: 768px){ .hidden-sm { display: none!important; } } @media (min-widt

css样式大全

字体属性:(font) 大小 {font-size: x-large;}(特大) xx-small;(极小) 一般中文用不到,只要用数值就可以,单位:PX.PD 样式 {font-style: oblique;}(偏斜体) italic;(斜体) normal;(正常) 行高 {line-height: normal;}(正常) 单位:PX.PD.EM 粗细 {font-weight: bold;}(粗体) lighter;(细体) normal;(正常) 变体 {font-variant: s