材料/工具:css
1、打开前端开发软件,新建一个html代码页面
2、在新建的html代码页面上找到<body>,在这个<body>标签里创建一个标签,a案例中使用的是<a>。
代码:
<a href="">
大家好,鼠标放到我身上就可看到效果
</a>
3、为新家<a>添加鼠标指针为手指样式。在html代码页面中找到<tilte>,在这个<title>后面创建一个<style>,然后在<style>中新建一个样式类,最后为这个样式类添加鼠标指针样式。
代码:
<style type="text/css">
.pointer{
cursor: pointer
}
</style>
4、把鼠标指针样式添加到<a>标签上。
添加后的代码:
<a href="" class="pointer">
大家好,鼠标放到我身上就可看到效果
</a>
5、保存html代码后使用浏览器打开,当鼠标滑过<a>上的文字后即可看到鼠标变为了指针状态。可以直接复制以下代码到新建的html文件上,粘贴保存后使用浏览器打开即可看到效果。
所有代码:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>css设置鼠标指针</title>
<style type="text/css">
.pointer{
cursor: pointer
}
</style>
</head>
<body>
<a href="" class="pointer">
大家好,鼠标放到我身上就可看到效果
</a>
</body>
</html>
html中有一个<a><a/>标签,直接给文字添加一个a标签 ;比如:
<a href="链接" target="_blank">关于我们</a>
a标签默认的鼠标放上去就是一个手指的样式,或者你也可以用cursor: pointer这个给他设置一下,cursor还有其他的属性可以使用
在html文件中添加一个事件,就是当鼠标滑动到submit按钮上时,设置鼠标样式即可,具体例子如下:
<html>
<body>
<p>请把鼠标移动到单词上,可以看到鼠标指针发生变化:</p>
<span style="cursor:auto">
Default</span><br />
<span style="cursor:pointer">
Pointer</span><br /> <!--这个就是你需要的-->
<span style="cursor:move">
Move</span><br />
<span style="cursor:e-resize">
e-resize</span><br />
<span style="cursor:ne-resize">
ne-resize</span><br />
<span style="cursor:nw-resize">
nw-resize</span><br />
<span style="cursor:text">
text</span><br />
<span style="cursor:wait">
wait</span><br />
<span style="cursor:help">
help</span>
</body>
</html>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)