怎么才能让鼠标后有跟随的特效

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎么才能让鼠标后有跟随的特效相关的知识,希望对你有一定的参考价值。

说清楚一些

参考技术A 我不知道你要什么样的跟随?
我具个例了:好比是一群小点
你在DW中把下例代码加入到代码视图的<boby></boby>中
<div id="tooltip2"
style="position:absolute;visibility:hidden;clip:rect(0 150 50 0);width:150px;background-color:lightyellow">
<layer name="nstip" width="1000px" bgcolor="lightyellow"> </layer>
</div>
<div id="www_helpor_net__d0"
style="position:absolute; left:10px; top:50px; width:3px; height:3px; z-index:1; background-color: #19636c; layer-background-color: #19636c; border: 1px none #000000; clip: rect(0 3 3 0)"></div>
<div
id="www_helpor_net__d1"
style="position:absolute; left:20px; top:50px; width:3px; height:3px; z-index:1; background-color: #708574; layer-background-color: #708574; border: 1px none #000000; clip: rect(0 3 3 0)"></div>
<div
id="www_helpor_net__d2"
style="position:absolute; left:30px; top:50px; width:3px; height:3px; z-index:1; background-color: #379bbf; layer-background-color: #379bbf; border: 1px none #000000; clip: rect(0 3 3 0)"></div>
<div
id="www_helpor_net__d3"
style="position:absolute; left:40px; top:50px; width:3px; height:3px; z-index:1; background-color: #25184c; layer-background-color: #25184c; border: 1px none #000000; clip: rect(0 3 3 0)"></div>
<div
id="www_helpor_net__d4"
style="position:absolute; left:50px; top:50px; width:3px; height:3px; z-index:1; background-color: #31bd3c; layer-background-color: #31bd3c; border: 1px none #000000; clip: rect(0 3 3 0)"></div>
<div
id="www_helpor_net__d5"
style="position:absolute; left:60px; top:50px; width:3px; height:3px; z-index:1; background-color: #c11efd; layer-background-color: #c11efd; border: 1px none #000000; clip: rect(0 3 3 0)"></div>

<script>
if (!document.layers&&!document.all)
event="test"
function showtip2(current,e,text)

if (document.all&&document.readyState=="complete")
document.all.tooltip2.innerhtml='<marquee style="border:1px solid black">'+text+'</marquee>'
document.all.tooltip2.style.pixelLeft=event.clientX+document.body.scrollLeft+10
document.all.tooltip2.style.pixelTop=event.clientY+document.body.scrollTop+10
document.all.tooltip2.style.visibility="visible"


else if (document.layers)
document.tooltip2.document.nstip.document.write('<b>'+text+'</b>')
document.tooltip2.document.nstip.document.close()
document.tooltip2.document.nstip.left=0
currentscroll=setInterval("scrolltip()",100)
document.tooltip2.left=e.pageX+10
document.tooltip2.top=e.pageY+10
document.tooltip2.visibility="show"


function hidetip2()
if (document.all)
document.all.tooltip2.style.visibility="hidden"
else if (document.layers)
clearInterval(currentscroll)
document.tooltip2.visibility="hidden"



function scrolltip()
if (document.tooltip2.document.nstip.left>=-document.tooltip2.document.nstip.document.width)
document.tooltip2.document.nstip.left-=5
else
document.tooltip2.document.nstip.left=150


function www_helpor_net___Layerfx(www_helpor_net__left,www_helpor_net__top,www_helpor_net__fnx,www_helpor_net__fny,www_helpor_net__div,www_helpor_net__bilder,www_helpor_net__loop,www_helpor_net__to,www_helpor_net__cnt,www_helpor_net__step)
if ((document.layers)||(document.all))
with (Math) www_helpor_net__nextx= eval(www_helpor_net__fnx)
with (Math) www_helpor_net__nexty= eval(www_helpor_net__fny)
www_helpor_net__cnt=(www_helpor_net__loop && www_helpor_net__cnt>=www_helpor_net__step*www_helpor_net__bilder)?0:www_helpor_net__cnt+www_helpor_net__step;
if (document.layers)
eval(www_helpor_net__div+".top="+(www_helpor_net__nexty+www_helpor_net__top))
eval(www_helpor_net__div+".left="+(www_helpor_net__nextx+www_helpor_net__left))

if (document.all)
eval("www_helpor_net__div=www_helpor_net__div.replace(/.layers/gi, '.all')");
eval(www_helpor_net__div+".style.pixelTop="+(www_helpor_net__nexty+www_helpor_net__top));
eval(www_helpor_net__div+".style.pixelLeft="+(www_helpor_net__nextx+www_helpor_net__left));

argStr='www_helpor_net___Layerfx('+www_helpor_net__left+','+www_helpor_net__top+',"'+www_helpor_net__fnx+'","'+www_helpor_net__fny+'","'+www_helpor_net__div+'",'+www_helpor_net__bilder+','+www_helpor_net__loop+','+www_helpor_net__to+','+www_helpor_net__cnt+','+www_helpor_net__step+')';
if (www_helpor_net__cnt<=www_helpor_net__step*www_helpor_net__bilder)eval(www_helpor_net__div+".www_helpor_net__to=setTimeout(argStr,www_helpor_net__to)");



function www_helpor_net___Mousetrace(evnt)
if (www_helpor_net__ns4)
if (evnt.pageX) www_helpor_net___ml=evnt.pageX; www_helpor_net___mt=evnt.pageY;
else
www_helpor_net___ml=(event.clientX + document.body.scrollLeft);
www_helpor_net___mt=(event.clientY + document.body.scrollTop);

if (www_helpor_net___tracescript)eval(www_helpor_net___tracescript)

var www_helpor_net__ns4=window.Event?true:false; var www_helpor_net___mt = 0; var www_helpor_net___ml = 0;
document.onmousemove = www_helpor_net___Mousetrace;
www_helpor_net___tracescript = '';

if (www_helpor_net__ns4) document.captureEvents(Event.MOUSEMOVE);
www_helpor_net___Mousetrace('',',document.www_helpor_net___Mousetrace1')

www_helpor_net___Layerfx(0,0,'www_helpor_net___ml+cos((15*sin(www_helpor_net__cnt/39.83007847812662))+0)*150*(sin(10+www_helpor_net__cnt/20)+0.2)*cos(www_helpor_net__cnt/20)','www_helpor_net___mt+sin((15*sin(www_helpor_net__cnt/34.224861639800686))+0)*150*(sin(10+www_helpor_net__cnt/20)+0.2)*cos(www_helpor_net__cnt/20)','document.layers[\'www_helpor_net__d0\']',2000,true,80,0,1);

www_helpor_net___Layerfx(0,0,'www_helpor_net___ml+cos((15*sin(www_helpor_net__cnt/27.66510707209673))+30)*150*(sin(10+www_helpor_net__cnt/20)+0.2)*cos(www_helpor_net__cnt/20)','www_helpor_net___mt+sin((15*sin(www_helpor_net__cnt/9.240632767417667))+30)*150*(sin(10+www_helpor_net__cnt/20)+0.2)*cos(www_helpor_net__cnt/20)','document.layers[\'www_helpor_net__d1\']',2000,true,80,0,1);

www_helpor_net___Layerfx(0,0,'www_helpor_net___ml+cos((15*sin(www_helpor_net__cnt/16.45318944579641))+60)*150*(sin(10+www_helpor_net__cnt/20)+0.2)*cos(www_helpor_net__cnt/20)','www_helpor_net___mt+sin((15*sin(www_helpor_net__cnt/16.0564452288292))+60)*150*(sin(10+www_helpor_net__cnt/20)+0.2)*cos(www_helpor_net__cnt/20)','document.layers[\'www_helpor_net__d2\']',2000,true,80,0,1);

www_helpor_net___Layerfx(0,0,'www_helpor_net___ml+cos((15*sin(www_helpor_net__cnt/6.95348954836835))+90)*150*(sin(10+www_helpor_net__cnt/20)+0.2)*cos(www_helpor_net__cnt/20)','www_helpor_net___mt+sin((15*sin(www_helpor_net__cnt/44.13697049887155))+90)*150*(sin(10+www_helpor_net__cnt/20)+0.2)*cos(www_helpor_net__cnt/20)','document.layers[\'www_helpor_net__d3\']',2000,true,80,0,1);

www_helpor_net___Layerfx(0,0,'www_helpor_net___ml+cos((15*sin(www_helpor_net__cnt/33.90077294583733))+120)*150*(sin(10+www_helpor_net__cnt/20)+0.2)*cos(www_helpor_net__cnt/20)','www_helpor_net___mt+sin((15*sin(www_helpor_net__cnt/2.2378828869411587))+120)*150*(sin(10+www_helpor_net__cnt/20)+0.2)*cos(www_helpor_net__cnt/20)','document.layers[\'www_helpor_net__d4\']',2000,true,80,0,1);

www_helpor_net___Layerfx(0,0,'www_helpor_net___ml+cos((15*sin(www_helpor_net__cnt/37.858312521039835))+150)*150*(sin(10+www_helpor_net__cnt/20)+0.2)*cos(www_helpor_net__cnt/20)','www_helpor_net___mt+sin((15*sin(www_helpor_net__cnt/18.083839795990098))+150)*150*(sin(10+www_helpor_net__cnt/20)+0.2)*cos(www_helpor_net__cnt/20)','document.layers[\'www_helpor_net__d5\']',2000,true,80,0,1);

if (!document.layers&&!document.all)
event="test"
function showtip2(current,e,text)

if (document.all&&document.readyState=="complete")
document.all.tooltip2.innerHTML='<marquee style="border:1px solid black">'+text+'</marquee>'
document.all.tooltip2.style.pixelLeft=event.clientX+document.body.scrollLeft+10
document.all.tooltip2.style.pixelTop=event.clientY+document.body.scrollTop+10
document.all.tooltip2.style.visibility="visible"


else if (document.layers)
document.tooltip2.document.nstip.document.write('<b>'+text+'</b>')
document.tooltip2.document.nstip.document.close()
document.tooltip2.document.nstip.left=0
currentscroll=setInterval("scrolltip()",100)
document.tooltip2.left=e.pageX+10
document.tooltip2.top=e.pageY+10
document.tooltip2.visibility="show"


function hidetip2()
if (document.all)
document.all.tooltip2.style.visibility="hidden"
else if (document.layers)
clearInterval(currentscroll)
document.tooltip2.visibility="hidden"



function scrolltip()
if (document.tooltip2.document.nstip.left>=-document.tooltip2.document.nstip.document.width)
document.tooltip2.document.nstip.left-=5
else
document.tooltip2.document.nstip.left=150


function www_helpor_net___Layerfx(www_helpor_net__left,www_helpor_net__top,www_helpor_net__fnx,www_helpor_net__fny,www_helpor_net__div,www_helpor_net__bilder,www_helpor_net__loop,www_helpor_net__to,www_helpor_net__cnt,www_helpor_net__step)
if ((document.layers)||(document.all))
with (Math) www_helpor_net__nextx= eval(www_helpor_net__fnx)
with (Math) www_helpor_net__nexty= eval(www_helpor_net__fny)
www_helpor_net__cnt=(www_helpor_net__loop && www_helpor_net__cnt>=www_helpor_net__step*www_helpor_net__bilder)?0:www_helpor_net__cnt+www_helpor_net__step;
if (document.layers)
eval(www_helpor_net__div+".top="+(www_helpor_net__nexty+www_helpor_net__top))
eval(www_helpor_net__div+".left="+(www_helpor_net__nextx+www_helpor_net__left))

if (document.all)
eval("www_helpor_net__div=www_helpor_net__div.replace(/.layers/gi, '.all')");
eval(www_helpor_net__div+".style.pixelTop="+(www_helpor_net__nexty+www_helpor_net__top));
eval(www_helpor_net__div+".style.pixelLeft="+(www_helpor_net__nextx+www_helpor_net__left));

argStr='www_helpor_net___Layerfx('+www_helpor_net__left+','+www_helpor_net__top+',"'+www_helpor_net__fnx+'","'+www_helpor_net__fny+'","'+www_helpor_net__div+'",'+www_helpor_net__bilder+','+www_helpor_net__loop+','+www_helpor_net__to+','+www_helpor_net__cnt+','+www_helpor_net__step+')';
if (www_helpor_net__cnt<=www_helpor_net__step*www_helpor_net__bilder)eval(www_helpor_net__div+".www_helpor_net__to=setTimeout(argStr,www_helpor_net__to)");



function www_helpor_net___Mousetrace(evnt)
if (www_helpor_net__ns4)
if (evnt.pageX) www_helpor_net___ml=evnt.pageX; www_helpor_net___mt=evnt.pageY;
else
www_helpor_net___ml=(event.clientX + document.body.scrollLeft);
www_helpor_net___mt=(event.clientY + document.body.scrollTop);

if (www_helpor_net___tracescript)eval(www_helpor_net___tracescript)

</script>
你也可以到网页特效的网站中看一下
参考技术B 开始-控制面版-鼠标-指针选项-打勾 显示指针踪迹-应用-确定 参考技术C 你问的是系统问题还是网页的问题啊?
在网页加段代码就可以啦~~~~~~本回答被提问者采纳

鼠标跟随特效妨碍鼠标点击未突出的空间装扮以及组件功能怎么办

如图,其中红色的字符串是通过尝试性的通过代码编辑添加上的鼠标文字跟随效果,也不知道怎么搞的,明明是文字,怎么出来变成一溜字符串,觉得难看的我想再进行编辑改动时,发现鼠标只能点击响应突出的显项目框(风格设置一行),因为它可以挡住鼠标跟随特效,而对未突出的隐项目框由于被鼠标跟随特效挡住则无法进行点击响应(自定义组建下面的区域),真是搬石头砸自己脚了,真纠结,拜托大家给出出招。

打开你编辑代码时的画面,把那个代码重新输入网址栏,照旧在网址栏按一遍,应该会消失。只是我猜想的,因为我在弄代码时不满意的话,会用那个代码再按一次,就会消失,但是你是保存过了,只能你去试试看了 参考技术A 如果创建flash鼠标跟随特效模块,只有鼠标移到模块上才会用特效。
如果想要鼠标离开主页模块,在日志其他等里面有特效的话,那就只能使用QQ空间鼠标代码或者在QQ空间商城装扮鼠标了。
1、QQ空间免费鼠标代码:
javascript:window.top.space_addItem(4,4966,0,0,0,1,0); 小绿人
javascript:window.top.space_addItem(4,5535,0,0,1,1,0); 色狼
javascript:window.top.space_addItem(4,1151,0,0,0,1,0); 老鹰
javascript:window.top.space_addItem(4,5837,0,0,1,1,0); 蜡笔小新
QQ空间代码使用方法

2、在QQ空间商城装扮鼠标:
点击QQ空间右上方“装扮空间”→上方“装饰商城”→上面“饰品”→“鼠标”,在喜欢的鼠标特效上点一下即可装扮到QQ空间,最后点空间右上方“保存”。
商城物品一般非黄钻是无法免费保存的,你还可以到商城上的“免费”里面去找下有没有鼠标(免费区物品定期更新的)。

以上是关于怎么才能让鼠标后有跟随的特效的主要内容,如果未能解决你的问题,请参考以下文章

flash中的鼠标跟随特效

qq空间鼠标特效代码,flash鼠标跟随特效怎么弄

qq空间鼠标特效代码,flash鼠标跟随特效怎么弄

在flash如何制作一个的鼠标跟随特效

让flash完全透明化,不响应鼠标点击呢?

jQuery特效 | 导航底部横线跟随鼠标缓动