问答文章1 问答文章501 问答文章1001 问答文章1501 问答文章2001 问答文章2501 问答文章3001 问答文章3501 问答文章4001 问答文章4501 问答文章5001 问答文章5501 问答文章6001 问答文章6501 问答文章7001 问答文章7501 问答文章8001 问答文章8501 问答文章9001 问答文章9501

如何把自己的网页里面的鼠标指针换成自己喜欢的图案

发布网友 发布时间:2022-04-20 13:42

我来回答

6个回答

懂视网 时间:2022-05-13 07:24

最近写项目需要实现一个功能:鼠标移动到一个图片左边显示左箭头,移动到右边显示右箭头。

实现方法:一个img上面定位两个div,div的样式如下:

 .toleft {  width: 200px;  height: 300px;  position: absolute;  left: 0px;  top: 0px;  cursor: url(../images/test/cursor_left.cur), default; } .toright {  width: 200px;  height: 300px;  position: absolute;  left: 200px;  top: 0px;  cursor: url(../images/test/cursor_right.cur), default; }

其他浏览器还好,可就是ie里面不行。

后来试了几种方法:

1.给 img 加 z-idnex:1 ; 给 div 加 z-index:2 //不行

2.把 div 的 position:absolute 去掉,加上float:left; //不行

无奈,后来给 div 加了个background-color:#fff; 嘿,居然可以了。

最后再把div的透明度设为0就ok了。

热心网友 时间:2022-05-13 04:32

1、CSS定义,在Extensionsr/Cursor下拉框里有很多鼠标样式
<HTML>
<HEAD>
<TITLE>Table of all supported cursors</TITLE><STYLE>
BODY
{
background-color:white;
color:black;
font-family:verdana;
font-size:.8em
} H1
{
font-size:1.5em;
color:#3366CC;
font-family:tahoma;
}

H2
{
font-size:1.3em;
color:#3366CC;
font-family:tahoma;
}

TD
{
background-color:#e4e4e4;
color:black;
font-family:verdana;
font-size:.8em;
width:125px;
padding:5px;
}
A
{
border-top:1px solid #e4e4e4;
padding-top:10px;
width:600px;
color:#3366CC;
text-decoration:none;
}
A:visited
{
color:#3366CC;
text-decoration:none;
}
A:hover
{
color:#3366CC;
text-decoration:underline;
}

</STYLE>
</HEAD><!--TOOLBAR_START-->
<!--TOOLBAR_EXEMPT-->
<!--TOOLBAR_END--><BODY><H1>Currently supported cursors</H1>
<P>When you use the inline style designation <STRONG>style="<EM>cursor:cursor</EM>"</STRONG>, the cursor displays the appropriate cursor for the cell that you move the pointer over.</P><B>Existing cursor styles</B>
<BR>
<BR>
<TABLE CELLPADDING="2" CELLSPACING="2">
<TR>
<TD STYLE="cursor:auto" >auto</TD>
<TD STYLE="cursor:crosshair" >crosshair</TD>
<TD STYLE="cursor:default" >default</TD>
<TD STYLE="cursor:move" >move</TD>
</TR>
<TR>
<TD STYLE="cursor:hand" >hand</TD>
<TD STYLE="cursor:text" >text</TD>
<TD STYLE="cursor:wait" >wait</TD>
<TD STYLE="cursor:help" >help</TD>
</TR>
<TD TITLE="This cursor style has been available in previous versions but has been updated for IE 6" >*-resize</TD>
</TABLE><H2>New cursors for IE 6</H2>
<TABLE>
<TR>
<TD STYLE="cursor:pointer; ">pointer</TD>
<TD STYLE="cursor:progress; ">progress</TD>
<TD STYLE="cursor:not-allowed; ">not-allowed</TD>
<TD STYLE="cursor:no-drop; ">no-drop</TD>
</TR>
<TR>
<TD STYLE="cursor:vertical-text; ">vertical-text</TD>
<TD STYLE="cursor:all-scroll; ">all-scroll</TD>
<TD STYLE="cursor:col-resize; ">col-resize</TD>
<TD STYLE="cursor:row-resize; ">row-resize</TD>
</TR>
</TABLE><BR>
<B>Directional cursors</B>
<BR>
<BR>
*-resize has been available in previous versions but has been updated for IE 6.
<BR>
<BR><TABLE>
<TR>
<TD STYLE="cursor:n-resize; ">n-resize</TD>
<TD STYLE="cursor:s-resize; ">s-resize</TD>
<TD STYLE="cursor:ne-resize; ">ne-resize</TD>
<TD STYLE="cursor:sw-resize; ">sw-resize</TD>
</TR>
<TR>
<TD STYLE="cursor:nw-resize; ">nw-resize</TD>
<TD STYLE="cursor:se-resize; ">se-resize</TD>
<TD STYLE="cursor:e-resize; ">e-resize</TD>
<TD STYLE="cursor:w-resize; ">w-resize</TD>
</TR>
</TABLE>
<BR><B>Custom cursors</B>
<BR>
<BR><TABLE CELLPADDING="2" CELLSPACING="2">
<TR>
<TD STYLE="cursor:url(elogo.cur); ">url(custom.cur)</TD>
<TD STYLE="cursor:url(banana.ani); ">url(custom.ani)</TD>
</TR>
</TABLE><P>[To view the source code, right-click anywhere in the window.]</P></BODY>
</HTML>
您可以先修改部分代码再运行
2、随鼠标指针移动的时间
html>
<head>
<title>网页特效|Linkweb.cn/Js|---跟随鼠标的日期时间表盘</title>
</head><BODY>
<!--将以下代码加入HTML的<Body></Body>之间-->

<SCRIPT language=JavaScript>
<!--
dCol="0000FF"
fCol="FF0000"
sCol="00FF00"
mCol="000000"
hCol="000000"
ClockHeight=40;
ClockWidth=40;
ClockFromMouseY=0;
ClockFromMouseX=100;

d=new Array("星期日","星期一","星期二","星期三","星期四","星期五","星期六");
m=new Array("1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月");
date=new Date();
day=date.getDate();
year=date.getYear();
if (year < 2000) year=year+1900;
TodaysDate="年 "+m[date.getMonth()]+" "+day+"日 "+d[date.getDay()]+" "+year;
D=TodaysDate.split('');
H='...';
H=H.split('');
M='....';
M=M.split('');
S='.....';
S=S.split('');
Face='1 2 3 4 5 6 7 8 9 10 11 12';
font='Arial';
size=1;
speed=0.6;
ns=(document.layers);
ie=(document.all);
Face=Face.split(' ');
n=Face.length;
a=size*10;
ymouse=0;
xmouse=0;
scrll=0;
props="<font face="+font+" size="+size+" color="+fCol+">";
props2="<font face="+font+" size="+size+" color="+dCol+">";
Split=360/n;
Dsplit=360/D.length;
HandHeight=ClockHeight/4.5
HandWidth=ClockWidth/4.5
HandY=-7;
HandX=-2.5;
scrll=0;
step=0.06;
currStep=0;
y=new Array();x=new Array();Y=new Array();X=new Array();
for (i=0; i < n; i++){y[i]=0;x[i]=0;Y[i]=0;X[i]=0}
Dy=new Array();Dx=new Array();DY=new Array();DX=new Array();
for (i=0; i < D.length; i++){Dy[i]=0;Dx[i]=0;DY[i]=0;DX[i]=0}
if (ns){
for (i=0; i < D.length; i++)
document.write('<layer name="nsDate'+i+'" top=0 left=0 height='+a+' width='+a+'><center>'+props2+D[i]+'</font></center></layer>');
for (i=0; i < n; i++)
document.write('<layer name="nsFace'+i+'" top=0 left=0 height='+a+' width='+a+'><center>'+props+Face[i]+'</font></center></layer>');
for (i=0; i < S.length; i++)
document.write('<layer name=nsSeconds'+i+' top=0 left=0 width=15 height=15><font face=Arial size=3 color='+sCol+'><center><b>'+S[i]+'</b></center></font></layer>');
for (i=0; i < M.length; i++)
document.write('<layer name=nsMinutes'+i+' top=0 left=0 width=15 height=15><font face=Arial size=3 color='+mCol+'><center><b>'+M[i]+'</b></center></font></layer>');
for (i=0; i < H.length; i++)
document.write('<layer name=nsHours'+i+' top=0 left=0 width=15 height=15><font face=Arial size=3 color='+hCol+'><center><b>'+H[i]+'</b></center></font></layer>');
}
if (ie){
document.write('<div id="Od" style="position:absolute;top:0px;left:0px"><div style="position:relative">');
for (i=0; i < D.length; i++)
document.write('<div id="ieDate" style="position:absolute;top:0px;left:0;height:'+a+';width:'+a+';text-align:center">'+props2+D[i]+'</font></div>');
document.write('</div></div>');
document.write('<div id="Of" style="position:absolute;top:0px;left:0px"><div style="position:relative">');
for (i=0; i < n; i++)
document.write('<div id="ieFace" style="position:absolute;top:0px;left:0;height:'+a+';width:'+a+';text-align:center">'+props+Face[i]+'</font></div>');
document.write('</div></div>');
document.write('<div id="Oh" style="position:absolute;top:0px;left:0px"><div style="position:relative">');
for (i=0; i < H.length; i++)
document.write('<div id="ieHours" style="position:absolute;width:16px;height:16px;font-family:Arial;font-size:16px;color:'+hCol+';text-align:center;font-weight:bold">'+H[i]+'</div>');
document.write('</div></div>');
document.write('<div id="Om" style="position:absolute;top:0px;left:0px"><div style="position:relative">');
for (i=0; i < M.length; i++)
document.write('<div id="ieMinutes" style="position:absolute;width:16px;height:16px;font-family:Arial;font-size:16px;color:'+mCol+';text-align:center;font-weight:bold">'+M[i]+'</div>');
document.write('</div></div>')
document.write('<div id="Os" style="position:absolute;top:0px;left:0px"><div style="position:relative">');
for (i=0; i < S.length; i++)
document.write('<div id="ieSeconds" style="position:absolute;width:16px;height:16px;font-family:Arial;font-size:16px;color:'+sCol+';text-align:center;font-weight:bold">'+S[i]+'</div>');
document.write('</div></div>')
}
(ns)?window.captureEvents(Event.MOUSEMOVE):0;
function Mouse(evnt){
ymouse = (ns)?evnt.pageY+ClockFromMouseY-(window.pageYOffset):event.y+ClockFromMouseY;
xmouse = (ns)?evnt.pageX+ClockFromMouseX:event.x+ClockFromMouseX;
}
(ns)?window.onMouseMove=Mouse:document.onmousemove=Mouse;
function ClockAndAssign(){
time = new Date ();
secs = time.getSeconds();
sec = -1.57 + Math.PI * secs/30;
mins = time.getMinutes();
min = -1.57 + Math.PI * mins/30;
hr = time.getHours();
hrs = -1.575 + Math.PI * hr/6+Math.PI*parseInt(time.getMinutes())/360;
if (ie){
Od.style.top=window.document.body.scrollTop;
Of.style.top=window.document.body.scrollTop;
Oh.style.top=window.document.body.scrollTop;
Om.style.top=window.document.body.scrollTop;
Os.style.top=window.document.body.scrollTop;
}
for (i=0; i < n; i++){
var F=(ns)?document.layers['nsFace'+i]:ieFace[i].style;
F.top=y[i] + ClockHeight*Math.sin(-1.0471 + i*Split*Math.PI/180)+scrll;
F.left=x[i] + ClockWidth*Math.cos(-1.0471 + i*Split*Math.PI/180);
}
for (i=0; i < H.length; i++){
var HL=(ns)?document.layers['nsHours'+i]:ieHours[i].style;
HL.top=y[i]+HandY+(i*HandHeight)*Math.sin(hrs)+scrll;
HL.left=x[i]+HandX+(i*HandWidth)*Math.cos(hrs);
}
for (i=0; i < M.length; i++){
var ML=(ns)?document.layers['nsMinutes'+i]:ieMinutes[i].style;
ML.top=y[i]+HandY+(i*HandHeight)*Math.sin(min)+scrll;
ML.left=x[i]+HandX+(i*HandWidth)*Math.cos(min);
}
for (i=0; i < S.length; i++){
var SL=(ns)?document.layers['nsSeconds'+i]:ieSeconds[i].style;
SL.top=y[i]+HandY+(i*HandHeight)*Math.sin(sec)+scrll;
SL.left=x[i]+HandX+(i*HandWidth)*Math.cos(sec);
}
for (i=0; i < D.length; i++){
var DL=(ns)?document.layers['nsDate'+i]:ieDate[i].style;
DL.top=Dy[i] + ClockHeight*1.5*Math.sin(currStep+i*Dsplit*Math.PI/180)+scrll;
DL.left=Dx[i] + ClockWidth*1.5*Math.cos(currStep+i*Dsplit*Math.PI/180);
}
currStep-=step;
}
function Delay(){
scrll=(ns)?window.pageYOffset:0;
Dy[0]=Math.round(DY[0]+=((ymouse)-DY[0])*speed);
Dx[0]=Math.round(DX[0]+=((xmouse)-DX[0])*speed);
for (i=1; i < D.length; i++){
Dy[i]=Math.round(DY[i]+=(Dy[i-1]-DY[i])*speed);
Dx[i]=Math.round(DX[i]+=(Dx[i-1]-DX[i])*speed);
}
y[0]=Math.round(Y[0]+=((ymouse)-Y[0])*speed);
x[0]=Math.round(X[0]+=((xmouse)-X[0])*speed);
for (i=1; i < n; i++){
y[i]=Math.round(Y[i]+=(y[i-1]-Y[i])*speed);
x[i]=Math.round(X[i]+=(x[i-1]-X[i])*speed);
}
ClockAndAssign();
setTimeout('Delay()',40);
}
if (ns||ie)window.onload=Delay;
//-->
</SCRIPT>
</body></html>
希望对你有帮助

热心网友 时间:2022-05-13 05:50

把代码加到<head></head>中间;
<style>
<!-- body{cursor:url("图片路径");}-->
</style>
或者,在样式表里添加,直接写body~~~(同上),应该就好了吧

热心网友 时间:2022-05-13 07:25

把代码加到<head></head>中间;
<style>
<!--
body{cursor:url("图片路径");}-->
</style>
或者,在样式表里添加,直接写body~~~(同上),应该就好了吧

热心网友 时间:2022-05-13 09:16

1、打开控制面板中的“鼠标”项目。 <br>2、屏幕出现“鼠标属性”对话筐,打开“指针”选项卡,将“方案” <br>选项改成“指挥家”(或其它你喜欢的指针)会更漂亮,单击“应用” <br>即可。 <br>如果windows xp自带的鼠标指针不够“可爱”,你还可以去网上下载更可爱的鼠标指针!步骤如下: <br>1、进入“<a href="https://wenwen.sogou.com/login/redirect?url=www.nephco.com%2fcursandicons" target="_blank">www.nephco.com/cursandicons</a>”网站,该网站有许多鼠标指针<br>、桌面图标和桌面主题的文件。 <br>2、选择喜欢的图案,如看一下batz maru,这是酷企鹅的鼠标指针和图标文件,单击任一个鼠标指针文件。把选中的文件保存到硬盘中。 <br>3、打开“控制面板”中的鼠标的指针选项卡单击“浏览”。 <br>4、屏幕出现“浏览”对话框,进入保存的鼠标文件,任意选择一个图 <br>案打开就可以了。 <br>

热心网友 时间:2022-05-13 13:49

下载
如何把自己的网页里面的鼠标指针换成自己喜欢的图案

您可以先修改部分代码再运行2、随鼠标指针移动的时间html&gt;网页特效|Linkweb.cn/Js|---跟随鼠标的日期时间表盘&lt;BODY&gt;&lt;!--将以下代码加入HTML的&lt;Body&gt;&lt;/Body&gt;之间--&gt;&lt;SCRIPT language=JavaScript&gt; &lt;!-- dCol="0000FF"fCol="FF0000"sCol="00FF00"mCol="000000"hCol="000000"ClockHeight=40; ClockWidth=40...

如何吧网页里面的鼠标指针换成自己喜欢的

开始 - 控制面板 - 打印机和其他硬件 - 鼠标 - 指针 - 方案 即可修改。如果需要喜欢的样式,可以在百度搜索下载。

如何把自己的网页里面的鼠标指针换成自己喜欢的图案

那个空间里面应该有一个空间装扮,点开之后下面一排有一个装饰选项,点开那个之后,在左面一栏有一个鼠标,点开那个就能选了

网页设计中把鼠标改变成自己喜欢的图案??

用CSS实现。改变整页的鼠标指针: body { cursor:normal; /*使用系统默认指针,就是箭头*/ cursor:url(mouse1.cur); /*使用你自己提供是静态指针*/ cursor:url(mouse2.ani); /*使用你自己提供是动画指针*/ } 改变链接指针:把上述的body改为a即可。单独为某个对象添加特殊指针只要为该对象添...

网页中如何让鼠标指针变成小手状

1.首先到网上下载鼠标指针主题包 2.打开控制面板下面“鼠标”按钮,打开鼠标属性配置窗口 3.点击“指针”标签,windows列出预置系统下默认所有鼠标的状态及图标,双击需要更改图标的状态列,如下图修改“正常选择”状态下的鼠标箭头图标 4.在鼠标主题包里选择需要更换的图片后点“确定”,即可预览到鼠标箭头...

鼠标指针指针替换

然后在弹出的菜单中选择安装选项。安装完成后,接下来的步骤是进入系统设置。首先打开"控制面板",接着找到"鼠标"选项,然后点击"指针"。在这里,你会看到一个"方案"下拉菜单,你需要从中找到刚安装的新指针样式。最后,选择你喜欢的方案后,点击"应用"并确认更改,这样新的鼠标指针就成功设置了。

电脑,鼠标指针怎么改

在桌面空白处右击,选择【个性化】。找到【主题】这一项,选择【鼠标光标】。选择【浏览】,把准备好的图片(需提前将图片转换成cur图标文件)选中即可。

我想知道怎样才能在自家电脑上把鼠标指针变成在那些网页上的样子呢?

你给的网页进不去哈 首先你可以百度 鼠标指针下载 然后下一个好看哒 再者点左下角的开始-设置-控制面板-鼠标-指针- 在下面看到正常指针了吧 就是系统默认的,你想换的话就点那个指针,然后浏览 找到你下载的指针 OK!

怎样设置鼠标事件(把鼠标指针改为个性图标)

新建CSS样式,在扩展属性页里有光标选项,除了有系统自带的,你还可以自己定义光标的地址!

电脑鼠标箭头皮肤怎么换_win10怎么换鼠标箭头皮肤

2、在打开的窗口中选择“指针”,选择指针样式,可点击浏览,找到文件夹下,查看哪些指针可选择。可按路径把喜欢的图标放进去;3、找到需要的指针样式后,点击选择,点击确定即可。这样即成功更改电脑鼠标箭头了。6. windows10怎么换鼠标箭头的图案 工具/原料 1、电脑 2、windows系统 方法/步骤 1、找到...

鼠标指针怎么换成别的 更换电脑鼠标指针图案 电脑的鼠标指针怎么换 更换鼠标指针 win10鼠标指针怎么换 电脑鼠标指针怎么换皮肤 怎么替换鼠标指针 怎样更换鼠标光标 鼠标指针大全
声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com
我的华硕x54xi2328hr-sl是2月份刚买的,99成新,我保养的很好,又贴了膜... 万豪白金卡是什么? 我想买便宜的好面膜啊,去哪买?网上有好的吗? 北京汽车贴膜去哪比较好?什么膜比较好? 万豪金卡吃饭有什么优惠 傅雷家书是一本关于什么的书?说说你读完此书的一些看法 《傅雷家书》的主题思想是什么 菠萝泡芙是菠萝做的嘛 贝克大叔产品目录 如何制作奶香四溢的泡芙? JS中如何修改鼠标光标的形状 JS动态该表鼠标样式,鼠标放在图片上,鼠标指针变... 请问一下js操作改变鼠标指针的问题 js css 自定义鼠标的样式 企鹅fm开了会员能全免费吗 企鹅影视会员别的品牌电视可以使用吗?买了企鹅影院... 在TCL电视上开的企鹅影院会员,怎么登陆? 开通企鹅影院会员可以看聚好看VIP么 华为如何设置电子身份证 华为帐号怎么验证身份? 孩子不小心华为实名认证了 人脸识别也不行 孩子才1... 华为账号,以后要人脸识别怎么办 华为手机显示身份验证出现问题 华为手机实名认证没有身份证人脸识别也验证不了怎... 为什么华为的身份检测+要这么久? 华为实名认证要人脸吗 华为nova9可以识别身份证吗 求名字或者免费的起名网(我怎么没找到几个,也不... 免费取名字网站 帮我起个网站的名字!!!急急急!!! javascript鼠标光标有哪些指针样式 javascript中cursor:pointer;的意思 网页设计中如何更换鼠标指针,求步骤 老人没牙怎样做金针菇软点 金针菇煮久了会怎样 金针菇为什么不易被消化?吃金针菇注意些什么? 金针菇软了还能吃吗 金针蘑怎么做才能软一些 金针菇怎么算熟 华为荣耀magic2如何隐藏手机应用 金针菇放冰箱是冷冻还是冷藏金针菇软了还能吃吗 怎么使金针菇变软? 金针菇开水烫多久才熟 炸金针菇怎么做不软还酥脆 我现在高二,我的那根金针菇又软又细,如何增粗增硬? 金针菇的营养价值 为什么金针菇吃下去感觉像是软木条 金针菇种类 常吃金针菇的好处与坏处!越详细越好 金针菇煮多久就能吃