步骤 2 : 样式一览 <style>
span{
cursor:crosshair;
}
</style>
<span>鼠标移动到这段文字上,就看到鼠标样式变成了十字架</span>
<style> span{ cursor:crosshair; } </style> <span>鼠标移动到这段文字上,就看到鼠标样式变成了十字架</span>
<!DOCTYPE html>
<script src="https://how2j.cn/study/js/jquery/2.0.0/jquery.min.js"></script>
<link href="https://how2j.cn/study/css/bootstrap/3.3.6/bootstrap.min.css" rel="stylesheet">
<script src="https://how2j.cn/study/js/bootstrap/3.3.6/bootstrap.min.js"></script>
<script>
$(function(){
$("span.effect").each(function(){
var cursorStyle=$(this).attr("cursorStyle");
$(this).css("cursor", cursorStyle);
$(this).parent().siblings().first().children().first().html("cursor:"+cursorStyle);
});
});
</script>
<table class="table">
<tr>
<td>效果</td>
<td>样式</td>
</tr>
<tr>
<td><span cursorStyle="default" class="effect">鼠标移动上来看效果</span></td>
<td><span class="style"></span></td>
</tr>
<tr>
<td><span cursorStyle="auto" class="effect">鼠标移动上来看效果</span></td>
<td><span class="style"></span></td>
</tr>
<tr>
<td><span cursorStyle="crosshair" class="effect">鼠标移动上来看效果</span></td>
<td><span class="style"></span></td>
</tr>
<tr>
<td><span cursorStyle="pointer" class="effect">鼠标移动上来看效果</span></td>
<td><span class="style"></span></td>
</tr>
<tr>
<td><span cursorStyle="e-resize" class="effect">鼠标移动上来看效果</span></td>
<td><span class="style"></span></td>
</tr>
<tr>
<td><span cursorStyle="ne-resize" class="effect">鼠标移动上来看效果</span></td>
<td><span class="style"></span></td>
</tr>
<tr>
<td><span cursorStyle="nw-resize" class="effect">鼠标移动上来看效果</span></td>
<td><span class="style"></span></td>
</tr>
<tr>
<td><span cursorStyle="n-resize" class="effect">鼠标移动上来看效果</span></td>
<td><span class="style"></span></td>
</tr>
<tr>
<td><span cursorStyle="se-resize" class="effect">鼠标移动上来看效果</span></td>
<td><span class="style"></span></td>
</tr>
<tr>
<td><span cursorStyle="sw-resize" class="effect">鼠标移动上来看效果</span></td>
<td><span class="style"></span></td>
</tr>
<tr>
<td><span cursorStyle="w-resize" class="effect">鼠标移动上来看效果</span></td>
<td><span class="style"></span></td>
</tr>
<tr>
<td><span cursorStyle="text" class="effect">鼠标移动上来看效果</span></td>
<td><span class="style"></span></td>
</tr>
<tr>
<td><span cursorStyle="wait" class="effect">鼠标移动上来看效果</span></td>
<td><span class="style"></span></td>
</tr>
<tr>
<td><span cursorStyle="help" class="effect">鼠标移动上来看效果</span></td>
<td><span class="style"></span></td>
</tr>
</tr>
<tr>
<td><span cursorStyle="not-allowed" class="effect">鼠标移动上来看效果</span></td>
<td><span class="style"></span></td>
</tr>
</table>
HOW2J公众号,关注后实时获知最新的教程和优惠活动,谢谢。
问答区域
2019-03-09
cursor:auto和 cursor:text有什么区别?
4 个答案
福清平头哥 跳转到问题位置 答案时间:2022-09-26 一样的
王菜菜 跳转到问题位置 答案时间:2021-11-06 <style>
span.a{ cursor:crosshair; }
span.b{ cursor:default; }
span.c{ cursor:auto; } /*auto 和 text 箭头相等*/
span.d{ cursor:pointer; }
span.e{ cursor:e-resize; } /*:e-resize 和:w-resize 箭头相等*/
span.f{ cursor:ne-resize; } /*:ne-resize 和:sw-resize 箭头相等*/
span.g{ cursor:nw-resize; } /*:nw-resize 和:se-resize 箭头相等*/
span.h{ cursor:n-resize; }
span.i{cursor:se-resize; }
span.j{ cursor:sw-resize; }
span.k{ cursor:w-resize; }
span.l{ cursor:text; }
span.m{ cursor:help; }
span.n{ cursor:wait; }
span.o{ cursor:not-allowed; }
</style>
<span class="a">a鼠标移动到这段文字上,就看到鼠标样式变成了十字架</span><br/>
<span class="b">b鼠标移动到这段文字上,就看到鼠标样式变成了箭头</span><br/>
<span class="c">c鼠标移动到这段文字上,就看到鼠标样式变成了I</span><br/>
<span class="d">d鼠标移动到这段文字上,就看到鼠标样式变成了手势</span><br/>
<span class="e">e鼠标移动到这段文字上,就看到鼠标样式变成了水平箭头</span><br/>
<span class="f">f鼠标移动到这段文字上,就看到鼠标样式变成了右斜杠箭头</span><br/>
<span class="g">g鼠标移动到这段文字上,就看到鼠标样式变成了左斜杠箭头</span><br/>
<span class="h">h鼠标移动到这段文字上,就看到鼠标样式变成了垂直箭头</span><br/>
<span class="i">i鼠标移动到这段文字上,就看到鼠标样式变成左斜杠箭头</span><br/>
<span class="j">j鼠标移动到这段文字上,就看到鼠标样式变成右斜杠箭头</span><br/>
<span class="k">k鼠标移动到这段文字上,就看到鼠标样式变成水平箭头</span><br/>
<span class="l">l鼠标移动到这段文字上,就看到鼠标样式变成了l</span><br/>
<span class="m">m鼠标移动到这段文字上,就看到鼠标样式变成了十字架</span><br/>
<span class="n">n鼠标移动到这段文字上,就看到鼠标样式变成了等待圈圈</span><br/>
<span class="o">o鼠标移动到这段文字上,就看到鼠标样式变成了箭头下面加问号</span><br/>
王菜菜 跳转到问题位置 答案时间:2021-11-06 <style>
span.a{ cursor:crosshair; }
span.b{ cursor:default; }
span.c{ cursor:auto; }
span.d{ cursor:pointer; }
span.e{ cursor:e-resize; }
span.f{ cursor:ne-resize; }
span.g{ cursor:nw-resize; }
span.h{ cursor:n-resize; }
span.i{cursor:se-resize; }
span.j{ cursor:sw-resize; }
span.k{ cursor:w-resize; }
span.l{ cursor:text; }
span.m{ cursor:help; }
span.n{ cursor:wait; }
span.o{ cursor:not-allowed; }
</style>
<span class="a">鼠标移动到这段文字上,就看到鼠标样式变成了十字架</span><br/>
<span class="b">鼠标移动到这段文字上,就看到鼠标样式变成了箭头</span><br/>
<span class="c">鼠标移动到这段文字上,就看到鼠标样式变成了I</span><br/>
<span class="d">鼠标移动到这段文字上,就看到鼠标样式变成了手势</span><br/>
<span class="e">鼠标移动到这段文字上,就看到鼠标样式变成了水平箭头</span><br/>
<span class="f">鼠标移动到这段文字上,就看到鼠标样式变成了右斜杠箭头</span><br/>
<span class="g">鼠标移动到这段文字上,就看到鼠标样式变成了左斜杠箭头</span><br/>
<span class="h">鼠标移动到这段文字上,就看到鼠标样式变成了垂直箭头</span><br/>
<span class="i">鼠标移动到这段文字上,就看到鼠标样式变成左斜杠箭头</span><br/>
<span class="j">鼠标移动到这段文字上,就看到鼠标样式变成右斜杠箭头</span><br/>
<span class="k">鼠标移动到这段文字上,就看到鼠标样式变成水平箭头</span><br/>
<span class="l">鼠标移动到这段文字上,就看到鼠标样式变成了l</span><br/>
<span class="m">鼠标移动到这段文字上,就看到鼠标样式变成了十字架</span><br/>
<span class="n">鼠标移动到这段文字上,就看到鼠标样式变成了等待圈圈</span><br/>
<span class="o">鼠标移动到这段文字上,就看到鼠标样式变成了箭头下面加问号</span><br/>
1111huan 跳转到问题位置 答案时间:2019-06-01 区别是,cursor:auto 就是cursor:text
哈哈哈哈哈
回答已经提交成功,正在审核。 请于 我的回答 处查看回答记录,谢谢
提问之前请登陆
提问已经提交成功,正在审核。 请于 我的提问 处查看提问记录,谢谢
|