求dreamweaver 8中鼠标指针滑动出现花瓣类似的图案的方法,详细点!

我想在我编的网页中鼠标滑动出现图案,像http://res.qqmcc.com/flash/shubiao/015.swf里的一样!我也试过那个网页里的代码,可是会把我的... 我想在我编的网页中鼠标滑动出现图案,像http://res.qqmcc.com/flash/shubiao/015.swf里的一样!我也试过那个网页里的代码,可是会把我的文本什么的都覆盖掉!求大大们帮助啊! 展开
 我来答
百度网友ed6a380
2011-12-05 · 超过14用户采纳过TA的回答
知道答主
回答量:55
采纳率:0%
帮助的人:36万
展开全部
随着鼠标滑动,可以出现文字爆米花的效果,文字你可以自己设置。脚本说明:

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

<SCRIPT LANGUAGE="JavaScript1.2">

var ver = navigator.appVersion;

var dom = document.getElementById ? 1 : 0;

var ie5 = (ver.indexOf("MSIE 5") > -1 && dom) ? 1 : 0;

var n = (document.layers);

var ie = (document.all);

var sparksAflyin = 0;

var totalSparks = 0;

var sparksOn = 1;

function initMouseEvents() {

document.onmousedown = mouseDown;

if (n) document.captureEvents(Event.MOUSEDOWN | Event.MOUSEMOVE);

}

function mouseDown(e) {

if (sparksOn) {

var mousex = (n) ? e.pageX : event.x+document.body.scrollLeft;

var mousey = (n) ? e.pageY : event.y+document.body.scrollTop;

if (!sparksAflyin) {

for (var k = 0; k <= 9; k++)

eval('SHOW("sDiv'+k+'")');

sparksAflyin = 1;

totalSparks = 0;

for(i = 0;i <= 9; i++)

eval('moveTo('+i+',0,'+mousex+','+mousey+')');

}

}

}

function moveTo(i,j, mousex, mousey){

if (j < eval('anim_'+i+'_x.length') ){

var tempx = eval('anim_'+i+'_x[j]+mousex');

var tempy = eval('anim_'+i+'_y[j]+mousey');

if (ie) {

if(tempy+30 > (document.body.offsetHeight+document.body.scrollTop))

tempy = document.body.offsetHeight+document.body.scrollTop-30;

if(tempx+30 > (document.body.offsetWidth+document.body.scrollLeft))

tempx = document.body.offsetWidth+document.body.scrollLeft-30;

eval('document.all.sDiv'+i+'.style.left = tempx;');

eval('document.all.sDiv'+i+'.style.top = tempy;');

}

if (n) {

eval('document.layers.sDiv'+i+'.left = tempx;');

eval('document.layers.sDiv'+i+'.top = tempy;');

}

j++;

// timeout: 50 = fireworks speed, larger number = slower speed

setTimeout("moveTo("+i+","+j+","+mousex+","+mousey+")",50)

}

else {

eval('HIDE("sDiv'+i+'")');

totalSparks++;

}

if (totalSparks == 10) {

sparksAflyin = 0;

totalSparks = 0;

}

}

function SHOW(divName){

if (document.all)

eval('document.all.'+divName+'.style.visibility = "visible";');

else if (document.layers)

eval('document.layers["'+divName+'"].visibility = "visible";');

}

function HIDE(divName){

if (document.all)

eval('document.all.'+divName+'.style.visibility = "hidden";');

else if (document.layers)

eval('document.layers["'+divName+'"].visibility = "hide";');

}

anim_0_x=new Array(20,20,10,0,0,0,0,0,0,0,0,0);

anim_0_y=new Array(-20,-40,-60,-80,-60,-40,-20,0,20,40,60,80);

anim_1_x=new Array(20,20,17,36,60,78,90,92,93,98,108,120,133,152,181);

anim_1_y=new Array(-20,-20,-33,-38,-38,-27,-2,25,51,84,113,141,162,212,253);

anim_2_x=new Array(20,20,2,3,4,5,6,7,8,9,10,12,13,15,18);

anim_2_y=new Array(-20,-20,-33,-38,-38,-27,-2,25,51,84,113,141,162,212,253);

anim_3_x=new Array(-20,-20,-2,-1,7,10,18,35,60,102,94,94,93,97,108,111,117,127);

anim_3_y=new Array(-20,-25,-64,-89,-104,-150,-173,-197,-213,-199,-151,-101,-66,-17,27,87,140,189);

anim_4_x=new Array(-20,-20,-10,-39,-30,-69,-64,-138,-154,-200,-181,-209,-191,-207,-203,-213,-202,-221,-211);

anim_4_y=new Array(-20,-20,-28,-51,-79,-100,-135,-154,-193,-183,-149,-134,-89,-60,8,51,107,157,201);

anim_5_x=new Array(-20,-29,-51,-72,-105,-133,-164,-189,-209,-229,-247,-270,-279,-282,-283,-283,-285,-286,-288);

anim_5_y=new Array(-20,-55,-86,-116,-154,-183,-205,-217,-217,-198,-169,-120,-44,-8,40,87,144,190,248);

anim_6_x=new Array(-20,-20,-7,14,44,79,143,186,217,226,234,244,250,259,265,274);

anim_6_y=new Array(-20,-21,-72,-113,-139,-166,-188,-181,-126,-68,-3,54,134,187,215,257);

anim_7_x=new Array(20,20,-3,-9,-13,-27,-33,-44,-54,-66,-77,-95,-107,-136,-150,-160,-164,-168,-171,-172,-172,-176,-175);

anim_7_y=new Array(-20,-26,-43,-63,-89,-116,-145,-169,-201,-222,-240,-253,-254,-245,-220,-195,-160,-124,-81,-53,-26,19,68);

anim_8_x=new Array(-20,20,-35,39,0,45,-1,24,-15,14,-20,35,-18,38,-11,16,49,64,81,93,100,103,109);

anim_8_y=new Array(-20,-20,-32,-42,-62,-76,-89,-107,-132,-147,-173,-180,-192,-209,-236,-193,-119,-73,-24,51,95,130,188);

anim_9_x=new Array(-20,-51,-89,-110,-165,-191,-228,-240,-259,-271,-277,-281,-287);

anim_9_y=new Array(-20,-20,-35,-37,-34,-16,10,47,105,150,189,227,273);

// End -->

</script>

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

<div id="sparks">

<div id="sDiv0" style="position:absolute; visibility: hidden;"><font face="arial black"

color="red">欢</font></div>

<div id="sDiv1" style="position:absolute; visibility: hidden;"><font face="arial black"

color="yellow">迎</font></div>

<div id="sDiv2" style="position:absolute; visibility: hidden;"><font face="arial black"

color="blue">光</font></div>

<div id="sDiv3" style="position:absolute; visibility: hidden;"><font face="arial black"

color="red">临</font></div>

<div id="sDiv4" style="position:absolute; visibility: hidden;"><font face="arial black"

color="orange">开</font></div>

<div id="sDiv5" style="position:absolute; visibility: hidden;"><font face="arial black"

color="white">心</font></div>

<div id="sDiv6" style="position:absolute; visibility: hidden;"><font face="arial black"

color="green">快</font></div>

<div id="sDiv7" style="position:absolute; visibility: hidden;"><font face="arial black"

color="skyblue">乐</font></div>

<div id="sDiv8" style="position:absolute; visibility: hidden;"><font face="arial black"

color="yellow">哦</font></div>

<div id="sDiv9" style="position:absolute; visibility: hidden;"><font face="arial black"

color="white">!</font></div>

</div>

第三步:把“OnLoad="initMouseEvents()"”加在<body>标记里
例如:<body OnLoad="initMouseEvents()">
追问
完全没反应!
谨慎且感人丶小猫
2011-12-05
知道答主
回答量:25
采纳率:0%
帮助的人:12.5万
展开全部
  脚本说明:

  把如下代码加入<body>区域中
  <script language="JavaScript">
  var color = "green"; //Change this color to whatever you want
  var noscroll = false; //Set this to true if your page can wholly display on screen
  var delay = 30; //Refresh time
  var dotn = 6; //Number of flashing dots (15 or more may delay your system)

  // YOU DON'T HAVE TO EDIT BELOW THIS LINE

  var ms = navigator.appVersion.indexOf("MSIE");
  var ie4 = (ms>0) && (parseInt(navigator.appVersion.substring(ms+5, ms+6)) >= 4);
  var userAgent=navigator.appName+" "+navigator.appVersion;
  var agentInfo=userAgent.substring(0, 12);
  var ns4 = (agentInfo>="Netscape 4.0");

  if (ie4||ns4)
  {
  var currStep = 0;
  var step = 0.2;
  var x = 50;
  var y = 50;
  var w = 200;
  var h = 200;
  var j = 0;
  var mdown = false;
  var tempx;
  var tempy;
  var G = 0;
  var ColorStep = 5;

  //Internet Explorer 4 Settings

  if (ie4)
  {
  for (j=0;j<dotn;j++)
  {
  document.write("<div id=\"a\" style=\"position: absolute; width: 0px; height: 0px; background-color: " + color + "; border: solid 2px " + color + "\"><\/div>");
  }

  function MouseMove()
  {
  x = window.event.x;
  y = window.event.y;
  }
  document.onmousemove = MouseMove;

  function MouseDown()
  {
  mdown=true;
  }
  document.onmousedown = MouseDown;
  function MouseUp()
  {
  mdown=false;
  }
  document.onmouseup= MouseUp;
  }

  //End of Internet Explorer 4 Settings

  //Netscape 4 Settings

  if(ns4)
  {
  window.captureEvents(Event.MOUSEMOVE);
  for (j=0;j<dotn;j++)
  {
  document.write("<layer LEFT=\"10\" TOP=\"10\" VISIBILITY=\"SHOW\" BGCOLOR=\"" + color + "\" CLIP=\"0,0,3,3\"><\/layer>");
  }

  function MoveHandler(evnt)
  {
  x = evnt.pageX ;
  y = evnt.pageY ;
  }
  window.onMouseMove = MoveHandler;
  }

  //End of Netscape 4 Settings

  //Animation function begins here

  function FlashDots()
  {
  if (ie4)
  {
  w = document.body.clientWidth/4;
  h = document.body.clientHeight/4;
  }
  else if (ns4)
  {
  w = window.innerWidth/4;
  h = window.innerHeight/4;
  }
  if (mdown)
  {
  w=w/2;
  h=h/2;
  }

  for (j=0;j<dotn;j++)
  {
  if (ie4)
  {
  tempy = y+Math.cos((20*Math.sin(currStep/(20+j)))+j*70)* h *(Math.sin(10+currStep/10)+0.2)*Math.cos((currStep+j*25)/10);
  if ((tempy > document.body.clientHeight-10) && (noscroll == true))
  {
  a[j].style.posTop = -50;
  }
  else
  {
  a[j].style.posTop = tempy;
  }
  tempx = x+Math.sin((20*Math.sin(currStep/20))+j*70)* w *(Math.sin(10+currStep/(10+j))+0.2)*Math.cos((currStep+j*25)/10);
  if (tempx > document.body.clientWidth-10)
  {
  a[j].style.posLeft = -50;
  }
  else
  {
  a[j].style.posLeft = tempx;
  }
  a[j].style.borderColor = "RGB(255," + G + ",0)";
  }
  else if (ns4)
  {
  document.layers[j].top = y+Math.cos((20*Math.sin(currStep/(20+j)))+j*70)* h *(Math.sin(10+currStep/10)+0.2)*Math.cos((currStep + j*25)/10);
  document.layers[j].left =x+Math.sin((20*Math.sin(currStep/20))+j*70)* w *(Math.sin(10+currStep/(10+j))+0.2)*Math.cos((currStep + j*25)/10);
  document.layers[j].bgcolor = "RGB(255," + G + ",0)";
  }
  }
  G += ColorStep;
  if ((G >= 255) || (G <= 0))
  {
  ColorStep *= -1;
  }
  currStep+=step;
  if (currStep>1000){currStep=0;}
  setTimeout("FlashDots()", delay);
  }

  //End of animation function

  FlashDots();
  }
  </script>

  如果不行,我还有别的样子的。
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
尕爹
2011-12-04 · TA获得超过214个赞
知道小有建树答主
回答量:328
采纳率:0%
帮助的人:69.2万
展开全部
这个很简单,dw里有鼠标经过动画。如果会js的话完全可以自己写代码
追问
可以发一下步骤吗?就是不懂怎么写啊!详细点得步骤!
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式