永发信息网

用CS3做鼠标跟随代码

答案:2  悬赏:20  手机版
解决时间 2021-04-24 23:42
  • 提问者网友:趣果有间
  • 2021-04-24 01:21

怎么将图片作为falsh鼠标跟随呢?

代码可以直接用

越简单越好。

越详细越好。

最佳答案
  • 五星知识达人网友:上分大魔王
  • 2021-04-24 01:56

你把跟随的电影片断命名为mc,


然后输入代码:把代码放在帧上,不是MC这个原件里


mc.onEnterFrame=function(){


mc._x+=(_root._xmouse-mc._x)/3;


mc._y+=(_root._ymouse-mc._y)/3;


var xm=_root._xmouse-mc._x;


var ym=_root._ymouse-mc._y;


}


if(xm>0){


mc._xscale=100;}


else{mc._xscale=-100;}

全部回答
  • 1楼网友:一秋
  • 2021-04-24 02:44

要完成此效果需要两个步骤

第一步:把如下代码加入到<head>区域中

<SCRIPT LANGUAGE="JavaScript">

var newtop=0

var newleft=0

if (navigator.appName == "Netscape") {

layerStyleRef="layer.";

layerRef="document.layers";

styleSwitch="";

}

else

{

layerStyleRef="layer.style.";

layerRef="document.all";

styleSwitch=".style";

}

function doMouseMove() {

layerName = 'iit'

eval('var curElement='+layerRef+'["'+layerName+'"]')

eval(layerRef+'["'+layerName+'"]'+styleSwitch+'.visibility="hidden"')

eval('curElement'+styleSwitch+'.visibility="visible"')

eval('newleft=document.body.clientWidth-curElement'+styleSwitch+'.pixelWidth')

eval('newtop=document.body.clientHeight-curElement'+styleSwitch+'.pixelHeight')

eval('height=curElement'+styleSwitch+'.height')

eval('width=curElement'+styleSwitch+'.width')

width=parseInt(width)

height=parseInt(height)

if (event.clientX > (document.body.clientWidth - 5 - width))

{

newleft=document.body.clientWidth + document.body.scrollLeft - 5 - width

}

else

{

newleft=document.body.scrollLeft + event.clientX

}

eval('curElement'+styleSwitch+'.pixelLeft=newleft')

if (event.clientY > (document.body.clientHeight - 5 - height))

{

newtop=document.body.clientHeight + document.body.scrollTop - 5 - height

}

else

{

newtop=document.body.scrollTop + event.clientY

}

eval('curElement'+styleSwitch+'.pixelTop=newtop')

}

document.onmousemove = doMouseMove;

</SCRIPT>

第二步:把如下代码加入到<body>区域中

<script language="javascript">

if (navigator.appName == "Netscape") {

}

else

{

document.write('<div ID=OuterDiv>')

document.write('<img src="http://www./images/link.gif" STYLE="position:absolute;TOP:0pt;LEFT:0pt;Z-INDEX:2;visibility:hidden;" onclick="javascript:window.open(this.src);" style="CURSOR: pointer" onload="return imgzoom(this,550)">')

document.write('</div>')

}

</script> <a href=" http://js.dlcom.org/">耽恋免费资源站DLcom网页特效集</a>

我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯