百燕之家 / 问答 / 详情

鼠标波纹控制和直线修正

2023-10-07 17:39:56
TAG: 鼠标
真可云

鼠标波纹控制就是一种特效,点击后会出现。儿直线修正对于日常电脑使用来说,这一功能可以修正你的细小移动,让鼠标显得更加平滑。

鼠标波纹控制:鼠标点击时显示波纹特效,每个按键对应不同的颜色。点击左键为蓝色波纹、右键为橙色波纹、中键为绿色波纹。则鼠标直线修正,比如拿鼠标在画图工具里面画直线,如果手没那么稳,中途抖动了一下,鼠标忽略抖动,自动调整成直线,这就是有直线修正。如果鼠标记录下中途的抖动,真实记录为波浪线,那就是没有直线修正。

此外:鼠标波纹控制可以利用某鼠标特效软件来实现波纹特效,也可以通过修改鼠标代码来完成。判断是否开启直线修正方法:最简单的方法是,开启电脑的画图功能,在里面用刷子工具画几条斜线,如果你发现其中有明显的直线线段的话,那么就是鼠标直线修正功能发挥的作用。所有鼠标在电脑上的移动轨迹实际上都是通过计算得出的,电脑会把你移动的细微曲线修改为直线,这样鼠标指针在电脑的反应并非100%源自于你移动鼠标的轨迹,然而这个计算过程会产生极其微小的延迟,通常玩家不会察觉。

侠客

驱动内的波纹控制: 开启后鼠标会在高速情况下进行算法修正,消除波浪形的抖动。

直线修正: 开启后鼠标会自动修正直线移动时的偏差抖动。

jQuery如何实现鼠标点击左右按钮滑动切换的示例

在做web前端开发的时候经常遇到图片滑动切换特效,接下来通过本文给大家分享使用jQuery实现鼠标点击左右按钮滑动切换特效,感兴趣的朋友参考实现代码使用jQuery实现点击左右滑动切换特效:HTML代码如下:js代码如下:
2023-09-28 02:08:381

css3鼠标移入特效:如何实现div颜色渐变和放大缩小的效果

本篇文章给大家带来的内容是关于css3中如何利用transition实现鼠标悬停的时候div的颜色、高度和宽度都改变的效果,有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。我们平时在浏览web网页的时候会见到这样一种情况:当鼠标悬停的某个区域的时候,该区域的形状会在指定时间内进行放大或者缩小的变化,甚至在变化大小的同时会出现颜色的渐变。这种特殊效果是如何实现的呢?现在由我来向大家介绍一下在css3中如何使用transition属性和hover属性实现div颜色渐变和放大缩小的效果。css3中transition属性transition属性是一个简写属性,用于四个过度属性,分别是transition-property,transition-duration,transition-timing-function和transition-delay。transition-property:要运动的样式(默认值为all,可以有三种定义:all、attr和none)transition-duration:运动时间(只有运动时间是必需值并且不能为0,否则transition不会有任何效果)transition-timing-function:运动形式(用法包括以下六种) ease:(逐渐变慢) linear:(匀速) ease-in:(加速) ease-out:(减速) ease-in-out:(先加速后减速) cubic-bezier 贝塞尔曲线:( x1, y1, x2, y2 )注意:其中如果没有定义的话,transition-timing-function默认值为ease。transition-delay:延迟时间(默认值为0)transition属性和浏览器的兼容(根据W3C标准)Internet Explorer 10、Firefox、Opera和Chrome等高版本浏览器支持transition属性标准写法。Safari支持替代的-webkit-transition 属性。但是Internet Explorer 9以及更早版本的浏览器不支持transition属性。css3鼠标移入特效的实现代码<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title>transition</title> <style> .box{ width:100px; height:100px; background-color:blue; transition-duration:2s; transition-timing-function:ease; transition-delay:0s; transition-property:all; } .box:hover{ width:200px; height:200px; background-color:red; } </style> </head> <body> <div class="box"></div> </body></html> css3鼠标移入特效实现效果如图所示更多炫酷CSS3、html5、javascript特效代码,尽在:javascript特效大全
2023-09-28 02:08:451

图片中鼠标悬停特效代码怎么写?

图片中鼠标悬停特效代码:<img src="~/images/jalendar-wood-bg.png" id="smallimg" width="10px" height="20px" onmouseout="hoverHiddendiv()"onmouseup="hoverShowDiv()" />。鼠标悬停的意思是指,当你的鼠标在网页的部分图标、文字或者图片上停留的时候,会有部分内容弹出,档从这个图标、文字或者图片上移开鼠标后,弹出的内容自动缩回。举例:鼠标悬停在百度首页(http://zhidao.baidu.com/)的文字栏,即可有下拉菜单弹出,移开鼠标,即可隐藏,这就是鼠标悬停。
2023-09-28 02:08:541

我要鼠标特效代码

<SCRIPT language=JavaScript>var brOK=false;var mie=false;var aver=parseInt(navigator.appVersion.substring(0,1));var aname=navigator.appName;function checkbrOK(){if(aname.indexOf("Internet Explorer")!=-1) {if(aver>=4) brOK=navigator.javaEnabled(); mie=true; } if(aname.indexOf("Netscape")!=-1) {if(aver>=4) brOK=navigator.javaEnabled();}}var vmin=2;var vmax=5;var vr=2;var timer1;function Chip(chipname,width,height){this.named=chipname; this.vx=vmin+vmax*Math.random(); this.vy=vmin+vmax*Math.random(); this.w=width; this.h=height; this.xx=0; this.yy=0; this.timer1=null;}function movechip(chipname){ if(brOK) {eval("chip="+chipname); if(!mie) {pageX=window.pageXOffset; pageW=window.innerWidth; pageY=window.pageYOffset; pageH=window.innerHeight; } else {pageX=window.document.body.scrollLeft; pageW=window.document.body.offsetWidth-8; pageY=window.document.body.scrollTop; pageH=window.document.body.offsetHeight; } chip.xx=chip.xx+chip.vx;chip.yy=chip.yy+chip.vy; chip.vx+=vr*(Math.random()-0.5); chip.vy+=vr*(Math.random()-0.5); if(chip.vx>(vmax+vmin)) chip.vx=(vmax+vmin)*2-chip.vx; if(chip.vx<(-vmax-vmin)) chip.vx=(-vmax-vmin)*2-chip.vx; if(chip.vy>(vmax+vmin)) chip.vy=(vmax+vmin)*2-chip.vy; if(chip.vy<(-vmax-vmin)) chip.vy=(-vmax-vmin)*2-chip.vy;if(chip.xx<=pageX) {chip.xx=pageX; chip.vx=vmin+vmax*Math.random(); } if(chip.xx>=pageX+pageW-chip.w) {chip.xx=pageX+pageW-chip.w; chip.vx=-vmin-vmax*Math.random(); } if(chip.yy<=pageY) {chip.yy=pageY; chip.vy=vmin+vmax*Math.random(); } if(chip.yy>=pageY+pageH-chip.h) {chip.yy=pageY+pageH-chip.h; chip.vy=-vmin-vmax*Math.random(); }if(!mie) {eval("document."+chip.named+".top ="+chip.yy); eval("document."+chip.named+".left="+chip.xx); } else {eval("document.all."+chip.named+".style.pixelLeft="+chip.xx); eval("document.all."+chip.named+".style.pixelTop ="+chip.yy); } chip.timer1=setTimeout("movechip(""+chip.named+"")",100); }}function stopme(chipname){if(brOK) {//alert(chipname) eval("chip="+chipname); if(chip.timer1!=null) {clearTimeout(chip.timer1)} }} </SCRIPT><SCRIPT>var mm;function mm(){checkbrOK(); mm=new Chip("mm",60,80);if(brOK) { movechip("mm");}}</SCRIPT></head><body onload=mm()><p> <DIV id=mm style="POSITION: absolute">我飘</p>
2023-09-28 02:09:071

鼠标特效代码

006-05-03 15:12:34 评论 ┆ 举报最佳答案此答案由提问者自己选择,并不代表百度知道知识人的观点回答:慕容星沉学弟5月3日 17:34 第一种方式比较简单.如我用的这个(效果见http://sina.kosoo.cn),鼠标是一个旋转的蓝宝石,当指向连接时则显示的是我名字代码<STYLE type=text/css>a:hover {cursor:url("http://www1.pzmwl.com/upload/MuRongXingChen.cur")}BODY {cursor:url("http://image2.sina.com.cn/dongman/pictcol/2005-11-04/U1111P55T4D74746F422DT20051104171606.ani")</STYLE>你更换鼠标地址为你喜欢的样式即可 如果每次刷新主页,都会出现不同风格的鼠标指针,那种变幻莫测的感觉一定很不错吧!感兴趣的话就 Follow me!(1)在既有面板中加入下面的代码(作用是随机调用CSS文件);(2)用记事本创建数个CSS文件(依实际要求而定),分别命名为style1.css、tyle2.css…… (3)将创建的CSS全部上传,务使其都在同一目录下。javascript 代码: <link id="stt" type="text/css" rel="stylesheet" href="b_sty.css"> <script Language="javascript"> <!-- Begin var Folder = "CSS文件所在目录"; var how_many_ads = 鼠标指针套数; var now = new Date(); var sec = now.getSeconds(); var ad = sec % how_many_ads; var css = ""; ad +=1; if (ad == 1) {css = "style1.css";} if (ad == 2) {css = "style2.css";} …… self.stt.href = Folder + css //--> </script> ★ “CSS文件所在目录”是CSS文件除去文件名的网址,比如你的CSS文件所在网址为http://www1.freehostingguru.com/bimzcy/style1.css 那么你CSS文件所在的目录就是http://www1.freehostingguru.com/bimzcy/ ★ 鼠标指针套数是指刷新主页后鼠标指针不同的次数,一套鼠标指针图片包括一张或两张鼠标指针图片。如果鼠标指针套数是2套,那么该处值为2。★ 省略号(……)处是和你鼠标指针的图片套数是相关的,如果你的鼠标指针的图片套数是2套,那么写到if (ad == 2) {css = "style2.css";}就可以了,如果是3套,就继续写if (ad== 3) {css = "style3.css";},依次类推。★ 提供.css文件上传的网页空间地址:http://www1.freehostingguru.com/logincn.php4 ★ 鼠标指针大全网站(就是大家熟悉的山水呵):http://myok.blogchina.com/2081936.html ★ 包含322个鼠标指针图片的下载包:http://www.windown.net/soft/235.htm ★ 提供鼠标指针图片文件(.cur、.ani)上传的网页空间地址:飘之梦网络文件上传:http://www1.pzmwl.com/华尔兹上传空间:http://bzwaltz.w1.net.cn/upload/upload.asp揪错 ┆ 评论1 ┆ 举报
2023-09-28 02:09:211

在Dreamweaver中的鼠标跟踪特效的代码应该怎么写?

要用到 JavaScript 特效把如下代码加入<head>区域中图片跟踪鼠标代码: QQ.jpg 是图片<SCRIPT language="JavaScript"><!--B=document.all;C=document.layers;T1=new Array("qq.jpg",38,35,"qq.jpg",30,31,"qq.jpg",28,26,"qq.jpg",22,21,"qq.jpg",16,16)nos=parseInt(T1.length/3)rate=50ie5fix1=0;ie5fix2=0;for (i=0;i<nos;i++){createContainer("CUR"+i,i*10,i*10,i*3+1,i*3+2,"","<img src=""+T1[i*3]+"" width="+T1[(i*3+1)]+" height="+T1[(i*3+2)]+" border=0>")}function createContainer(N,Xp,Yp,W,H,At,HT,Op,St){with (document){write((!B) ? "<layer id=""+N+"" left="+Xp+" top="+Yp+" width="+W+" height="+H : "<div id=""+N+"""+" style="position:absolute;left:"+Xp+"; top:"+Yp+"; width:"+W+"; height:"+H+"; ");if(St){if (C)write(" style="");write(St+";" ")}else write((B)?""":"");write((At)? At+">" : ">");write((HT) ? HT : "");if (!Op)closeContainer(N)}}function closeContainer(){document.write((B)?"</div>":"</layer>")}function getXpos(N){return (B) ? parseInt(B[N].style.left) : C[N].left}function getYpos(N){return (B) ? parseInt(B[N].style.top) : C[N].top}function moveContainer(N,DX,DY){c=(B) ? B[N].style :C[N];c.left=DX;c.top=DY}function cycle(){//if (IE5) if (document.all&&window.print){ie5fix1=document.body.scrollLeft;ie5fix2=document.body.scrollTop;}for (i=0;i<(nos-1);i++){moveContainer("CUR"+i,getXpos("CUR"+(i+1)),getYpos("CUR"+(i+1)))}}function newPos(e){moveContainer("CUR"+(nos-1),(B)?event.clientX+ie5fix1:e.pageX+2,(B)?event.clientY+ie5fix2:e.pageY+2)}if(document.layers)document.captureEvents(Event.MOUSEMOVE)document.onmousemove=newPossetInterval("cycle()",rate)//--></SCRIPT>文字特效:word[1]="L";word[2]="A";word[3]="O";word[4]="H";word[5]="E";LAOHE 是你设置的字体<SCRIPT language=javascript><!--//This is a JS program for Sword Jin"s JoyFM homepage.All rights reserved.var cx=0;var cy=0;var val=0;function locate(){ cx=window.event.x;cy=window.event.y;}document.onmousemove=locate;function follow(i){ var x;if(i<4)x=cx-50+i*10;else x=cx-25+i*10;var y=cy-20+Math.floor(Math.random()*40);w=eval("word"+i);with(w.style){left=x.toString()+"px";top=y.toString()+"px";}}function show(i){ var w=eval("word"+i);with(w.style){visibility="visible";s=parseInt(fontSize);if(s>=200)s-=100;else if(s>90&&s<=100) { s-=85; clearInterval(val); if(i<5)val=setInterval("show("+(i+1)+")",20); } fontSize=s;}}function start(){ for(i=1;i<=5;i++){val=setInterval("show(1)",20);setInterval("follow("+i+")",100);}} //--></SCRIPT><SCRIPT language=javascript>var word=new Array(5);word[1]="L";word[2]="A";word[3]="O";word[4]="H";word[5]="E";for(i=1;i<=5;i++) document.write("<div id="word"+i+"" style="width:20px;height:20px;position:absolute;font-size:1000;visibility:hidden"><font face="Forte" color="red">"+word+"</font></div>");start();</SCRIPT>
2023-09-28 02:09:291

flash鼠标经过时代码特效

代码如下onClipEvent(mouseMove){mx=_root._xmouse;my=_root._ymouse;x1=MC._x;y1=MC._y;x2=x1+MC._width;y2=y1+MC._height;if(x1<=mx and x2>=mx and y1<=my and y2>=my){MC._x=random(550);MC._y=random(400);}}
2023-09-28 02:09:482

主页制作中鼠标特效代码的问题

c
2023-09-28 02:09:554

急求各种网页鼠标特效代码(只要代码,不要网址)

很酷的跟随鼠标的三色彩带html><head><title>网页特效|Linkweb.cn/Js|---很酷的跟随鼠标的三色彩带</title></head><body bgColor=#000000><!--将以下代码加入HTML的<Body></Body>之间--><script language="JavaScript"><!-- var a_Colour="fff000";var b_Colour="00ff00";var c_Colour="ff00ff";var Size=120;var YDummy=new Array(),XDummy=new Array(),xpos=0,ypos=0,ThisStep=0;step=0.6;if (document.layers){window.captureEvents(Event.MOUSEMOVE);function nsMouse(evnt){xpos = window.pageYOffset+evnt.pageX+6;ypos = window.pageYOffset+evnt.pageY+16;}window.onMouseMove = nsMouse;}else if (document.all){function ieMouse(){xpos = document.body.scrollLeft+event.x+6;ypos = document.body.scrollTop+event.y+16;}document.onmousemove = ieMouse;}function swirl(){for (i = 0; i < 3; i++) { YDummy[i]=ypos+Size*Math.sin((1*Math.sin((ThisStep)/10))+i*2)*Math.sin((ThisStep)/4); XDummy[i]=xpos+Size*Math.cos((1*Math.sin((ThisStep)/10))+i*2)*Math.sin((ThisStep)/4); }ThisStep+=step;setTimeout("swirl()",10);}var amount=10;if (document.layers){for (i = 0; i < amount; i++){document.write("<layer name=nsa"+i+" top=0 left=0 width="+i/2+" height="+i/2+" bgcolor="+a_Colour+"></layer>");document.write("<layer name=nsb"+i+" top=0 left=0 width="+i/2+" height="+i/2+" bgcolor="+b_Colour+"></layer>");document.write("<layer name=nsc"+i+" top=0 left=0 width="+i/2+" height="+i/2+" bgcolor="+c_Colour+"></layer>");}}else if (document.all){document.write("<div id="ODiv" style="position:absolute;top:0px;left:0px">"+"<div id="IDiv" style="position:relative">");for (i = 0; i < amount; i++){document.write("<div id=x style="position:absolute;top:0px;left:0px;width:"+i/2+";height:"+i/2+";background:"+a_Colour+";font-size:"+i/2+""></div>");document.write("<div id=y style="position:absolute;top:0px;left:0px;width:"+i/2+";height:"+i/2+";background:"+b_Colour+";font-size:"+i/2+""></div>");document.write("<div id=z style="position:absolute;top:0px;left:0px;width:"+i/2+";height:"+i/2+";background:"+c_Colour+";font-size:"+i/2+""></div>");}document.write("</div></div>");}function prepos(){var ntscp=document.layers;var msie=document.all;if (document.layers){for (i = 0; i < amount; i++){ if (i < amount-1) { ntscp["nsa"+i].top=ntscp["nsa"+(i+1)].top;ntscp["nsa"+i].left=ntscp["nsa"+(i+1)].left; ntscp["nsb"+i].top=ntscp["nsb"+(i+1)].top;ntscp["nsb"+i].left=ntscp["nsb"+(i+1)].left; ntscp["nsc"+i].top=ntscp["nsc"+(i+1)].top;ntscp["nsc"+i].left=ntscp["nsc"+(i+1)].left; } else { ntscp["nsa"+i].top=YDummy[0];ntscp["nsa"+i].left=XDummy[0]; ntscp["nsb"+i].top=YDummy[1];ntscp["nsb"+i].left=XDummy[1]; ntscp["nsc"+i].top=YDummy[2];ntscp["nsc"+i].left=XDummy[2]; }}}else if (document.all){for (i = 0; i < amount; i++){ if (i < amount-1) { msie.x[i].style.top=msie.x[i+1].style.top;msie.x[i].style.left=msie.x[i+1].style.left; msie.y[i].style.top=msie.y[i+1].style.top;msie.y[i].style.left=msie.y[i+1].style.left; msie.z[i].style.top=msie.z[i+1].style.top;msie.z[i].style.left=msie.z[i+1].style.left; } else { msie.x[i].style.top=YDummy[0];msie.x[i].style.left=XDummy[0]; msie.y[i].style.top=YDummy[1];msie.y[i].style.left=XDummy[1]; msie.z[i].style.top=YDummy[2];msie.z[i].style.left=XDummy[2]; }}}setTimeout("prepos()",10);}function Start(){swirl(),prepos()}window.onload=Start;// --></script></body></html>跟随鼠标很逼真的弹性小球<html><head><title>网页特效|Linkweb.cn/Js|---跟随鼠标很逼真的弹性小球</title></head><body><!--将以下代码加入HTML的<Body></Body>之间--><DIV id=dot0 style="HEIGHT: 16; POSITION: absolute; VISIBILITY: hidden; WIDTH: 11; left:10; top:15"><IMG height=11 src="images/bullet.gif" width=11> </DIV><DIV id=dot1 style="HEIGHT: 11px; POSITION: absolute; WIDTH: 11px"><IMG height=11 src="images/bullet.gif" width=11> </DIV><DIV id=dot2 style="HEIGHT: 11px; POSITION: absolute; WIDTH: 11px"><IMG height=11 src="images/bullet.gif" width=11> </DIV><DIV id=dot3 style="HEIGHT: 11px; POSITION: absolute; WIDTH: 11px"><IMG height=11 src="images/bullet.gif" width=11> </DIV><DIV id=dot4 style="HEIGHT: 11px; POSITION: absolute; WIDTH: 11px"><IMG height=11 src="images/bullet.gif" width=11> </DIV><DIV id=dot5 style="HEIGHT: 11px; POSITION: absolute; WIDTH: 11px"><IMG height=11 src="images/bullet.gif" width=11> </DIV><DIV id=dot6 style="HEIGHT: 16; POSITION: absolute; WIDTH: 11; left:10; top:15"><IMG height=11 src="images/bullet.gif" width=11> </DIV><SCRIPT language=JavaScript>var nDots = 7;var Xpos = 0;var Ypos = 0;var DELTAT = .01;var SEGLEN = 10;var SPRINGK = 10;var MASS = 1;var XGRAVITY = 0;var YGRAVITY = 50;var RESISTANCE = 10;var STOPVEL = 0.1;var STOPACC = 0.1;var DOTSIZE = 11;var BOUNCE = 0.75;var isNetscape = navigator.appName=="Netscape";var followmouse = true;var dots = new Array();init();function init(){ var i = 0; for (i = 0; i < nDots; i++) { dots[i] = new dot(i); } if (!isNetscape) { } for (i = 0; i < nDots; i++) { dots[i].obj.left = dots[i].X; dots[i].obj.top = dots[i].Y; } if (isNetscape) { startanimate(); } else { setTimeout("startanimate()", 1000); }}function dot(i){ this.X = Xpos; this.Y = Ypos; this.dx = 0; this.dy = 0; if (isNetscape) { this.obj = eval("document.dot" + i); } else { this.obj = eval("dot" + i + ".style"); }}function startanimate() { setInterval("animate()", 20);}function setInitPositions(dots){ var startloc = document.all.tags("LI"); var i = 0; for (i = 0; i < startloc.length && i < (nDots - 1); i++) { dots[i+1].X = startloc[i].offsetLeft startloc[i].offsetParent.offsetLeft - DOTSIZE; dots[i+1].Y = startloc[i].offsetTop + startloc[i].offsetParent.offsetTop + 2*DOTSIZE; } dots[0].X = dots[1].X; dots[0].Y = dots[1].Y - SEGLEN;}function MoveHandler(e){ Xpos = e.pageX; Ypos = e.pageY; return true;}function MoveHandlerIE() { Xpos = window.event.x + document.body.scrollLeft; Ypos = window.event.y + document.body.scrollTop;}if (isNetscape) { document.captureEvents(Event.MOUSEMOVE); document.onMouseMove = MoveHandler;} else { document.onmousemove = MoveHandlerIE;}function vec(X, Y){ this.X = X; this.Y = Y;}function springForce(i, j, spring){ var dx = (dots[i].X - dots[j].X); var dy = (dots[i].Y - dots[j].Y); var len = Math.sqrt(dx*dx + dy*dy); if (len > SEGLEN) { var springF = SPRINGK * (len - SEGLEN); spring.X += (dx / len) * springF; spring.Y += (dy / len) * springF; }}function animate() { var start = 0; if (followmouse) { dots[0].X = Xpos; dots[0].Y = Ypos; start = 1; } for (i = start ; i < nDots; i++ ) { var spring = new vec(0, 0); if (i > 0) { springForce(i-1, i, spring); } if (i < (nDots - 1)) { springForce(i+1, i, spring); } var resist = new vec(-dots[i].dx * RESISTANCE, -dots[i].dy * RESISTANCE); var accel = new vec((spring.X + resist.X)/MASS + XGRAVITY, (spring.Y + resist.Y)/ MASS + YGRAVITY); dots[i].dx += (DELTAT * accel.X); dots[i].dy += (DELTAT * accel.Y); if (Math.abs(dots[i].dx) < STOPVEL && Math.abs(dots[i].dy) < STOPVEL && Math.abs(accel.X) < STOPACC && Math.abs(accel.Y) < STOPACC) { dots[i].dx = 0; dots[i].dy = 0; } dots[i].X += dots[i].dx; dots[i].Y += dots[i].dy; var height, width; if (isNetscape) { height = window.innerHeight + window.pageYOffset; width = window.innerWidth + window.pageXOffset; } else { height = document.body.clientHeight + document.body.scrollTop; width = document.body.clientWidth + document.body.scrollLeft; } if (dots[i].Y >= height - DOTSIZE - 1) { if (dots[i].dy > 0) { dots[i].dy = BOUNCE * -dots[i].dy; } dots[i].Y = height - DOTSIZE - 1; } if (dots[i].X >= width - DOTSIZE) { if (dots[i].dx > 0) { dots[i].dx = BOUNCE * -dots[i].dx; } dots[i].X = width - DOTSIZE - 1; } if (dots[i].X < 0) { if (dots[i].dx < 0) { dots[i].dx = BOUNCE * -dots[i].dx; } dots[i].X = 0; } dots[i].obj.left = dots[i].X; dots[i].obj.top = dots[i].Y; }}</SCRIPT></body></html>这里太小了 放不了那么多 http://www.jscode.cn/jave_mouse/29051032.htm里面有很多的 不想链接的话 就看那两个吧
2023-09-28 02:10:041

html鼠标特效代码

;//开关5控制小数点可否被录入==1时可以!=1输入的小数点被丢掉JButtonjicunqi;//寄存器记录是否连续按下符号键Vectorvt=newVector(20,10);
2023-09-28 02:10:132

鼠标特效代码应插在哪里?

特效加在HEAD里鼠标样式(就是鼠标指针)加在BODY后面
2023-09-28 02:10:213

如何把网站中的鼠标特效代码弄下来

另存为 - 找对应的JS
2023-09-28 02:10:282

qq空间鼠标特效代码

  qq空间鼠标特效代码1:跟随鼠标移动的心    flash地址:http://flash.qqkj.cn/sucai.swf?sid=flash/sucai/shubiaotexiao/xin  跟随鼠标的星星飘过:    flash地址:http://flash.qqkj.cn/sucai.swf?sid=flash/sucai/shubiaotexiao/stars  蓝色光电效果:    比较另类的2款qq空间鼠标特效:    flash地址:http://flash.qqkj.cn/sucai.swf?id=3827    地址:http://flash.qqkj.cn/sucai.swf?id=21  更多qq空间鼠标特效代码,flash鼠标跟随特效(点击地址可以查看效果):  跟随鼠标移动的火: http://flash.qqkj.cn/sucai.swf?id=1  跟随鼠标变动的花: http://flash.qqkj.cn/sucai.swf?id=2  跟随鼠标移动的黄色点点效果: http://flash.qqkj.cn/sucai.swf?id=3  跟随鼠标移动的五彩球: http://flash.qqkj.cn/sucai.swf?id=4  鼠标一定飘落白色雪花: http://flash.qqkj.cn/sucai.swf?id=5  跟随鼠标移动的无星: http://flash.qqkj.cn/sucai.swf?id=6  鼠标移动,花瓣闪开: http://flash.qqkj.cn/sucai.swf?id=7  超眩鼠标移动旋转特效: http://flash.qqkj.cn/sucai.swf?id=8  鼠标移动,蝴蝶飞舞: http://flash.qqkj.cn/sucai.swf?id=9  跟随鼠标移动的红心: http://flash.qqkj.cn/sucai.swf?id=10  跟着鼠标移动的鱼: http://flash.qqkj.cn/sucai.swf?id=11  鼠标移动放烟花: http://flash.qqkj.cn/sucai.swf?id=12  鼠标移动旋转特效: http://flash.qqkj.cn/sucai.swf?id=13  超眩非主流效果鼠标特效: http://flash.qqkj.cn/sucai.swf?id=14  跟随鼠标移动的星星点点: http://flash.qqkj.cn/sucai.swf?id=15  鼠标滑动,星星坠落特效: http://flash.qqkj.cn/sucai.swf?id=16  鼠标自动画心:  http://flash.qqkj.cn/sucai.swf?id=17  跟着鼠标移动的黑色蝴蝶: http://flash.qqkj.cn/sucai.swf?id=18  跟随鼠标移动的心: http://flash.qqkj.cn/sucai.swf?id=19
2023-09-28 02:10:364

找个这样的鼠标时钟特效代码

有什么问题请到<a href="/bbs/forums.php?fid=21">论坛</a>中发表<br><!-- 把如下代码加入<body>区域中 --><!-- http://www.webjx.com/js --><!-- bbs http://www.webjx.com/bbs-->看看效果怎么样啊:<br><!-- cool clock --><SCRIPT language=JavaScript>dCol="000099";//date colour.fCol="668099";//face colour.sCol="FF0000";//seconds colour.mCol="000000";//minutes colour.hCol="000000";//hours colour.ClockHeight=40;ClockWidth=40;ClockFromMouseY=0;ClockFromMouseX=100;//Alter nothing below! Alignments will be lost!d=new Array("SUNDAY","MONDAY","TUESDAY","WEDNESDAY","THURSDAY","FRIDAY","SATURDAY");m=new Array("JANUARY","FEBRUARY","MARCH","APRIL","MAY","JUNE","JULY","AUGUST","SEPTEMBER","OCTOBER","NOVEMBER","DECEMBER");date=new Date();day=date.getDate();year=date.getYear();if (year < 2000) year=year+1900;TodaysDate=" "+d[date.getDay()]+" "+day+" "+m[date.getMonth()]+" "+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";font="Verdana";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+"><B>";props2="<font face="+font+" size="+size+" color="+dCol+"><B>";Split=360/n;Dsplit=360/D.length;HandHeight=ClockHeight/4.5HandWidth=ClockWidth/4.5HandY=-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]+"</B></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]+"</B></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()",10);}if (ns||ie)window.onload=Delay;</SCRIPT>
2023-09-28 02:10:491

鼠标特效代码

尻 你会不会写代码呀?<html><body>就是写在这里拉</body></html>
2023-09-28 02:10:561

有谁知道QQ空间鼠标特效代码怎样使用吗?要详细的,有用的。谢谢了

一、登录你的QQ空间;二、点“装扮空间”;三、将以上QQ空间免费皮肤对应的代码粘贴到浏览器地址栏中(也就是输入网址那里),四、在地址栏里按回车,如果没有出现物品,请多按几次;五、点“保存装扮方案”。http://user.qzone.qq.com/790436877/infocenter这是我的空间,帮我踩踩呀~~
2023-09-28 02:11:172

如何使用QQ空间flash鼠标特效代码

哈哈很简单啊进自己的空间之后选择自定义然后在输网址的地方输入代码回车一下就OK啦
2023-09-28 02:11:251

QQ空间的鼠标特效代码怎么用的?

链接
2023-09-28 02:11:336

关于qq空间鼠标跟随特效代码

注意:将鼠标移动到黑色区域即可查看效果(友情提示:其中有一些以前发过,但是地址基本上全部失效,以下是最新整理,地址永久有效)如何放到空间:点自定义---模块--添加模块---flash动画模块--设置透明,循环,自动播放,边框无,确定即可!!Qzone最热门的几款鼠标效果FLASH:第一款:鼠标滑过出现心效果第一款地址:/UploadFile/201009/25/EC163338107.swf?url=xin1第二款:鼠标滑过星星下落效果第二款地址:/UploadFile/201009/25/EC163338107.swf?url=xin2第三款:鼠标滑过画出一个心(白色版)第三款地址:/UploadFile/201009/25/EC163338107.swf?url=xin3鼠标滑过画出一个心(绿色版)/UploadFile/201009/25/EC163338107.swf?url=xin4鼠标滑过画出一个心(红色版)/UploadFile/201009/25/EC163338107.swf?url=xin5鼠标滑过画出一个心(**版)/UploadFile/201009/25/EC163338107.swf?url=xin6第四款:鼠标滑过出现漂亮的心第四款地址:/UploadFile/201009/25/EC163338107.swf?url=xin8第五款:鼠标滑过出现蓝色幻彩光点第五款地址:/UploadFile/201009/25/EC163338107.swf?url=lanse第六款:鼠标滑过出现白色幻彩光点第六款地址:/UploadFile/201009/25/EC163338107.swf?url=baise第七款:鼠标滑过出现红色幻彩光点第七款地址:/UploadFile/201009/25/EC163338107.swf?url=hongse第八款:鼠标滑过出现绿色幻彩光点第八款地址:/UploadFile/201009/25/EC163338107.swf?url=lvse第九款:旋转白点散开、分散特效第九款地址:/UploadFile/201009/25/64163339600.swf?id=mouse/1&.swf鼠标划过蓝色光点:/UploadFile/201009/25/EC163338107.swf?url=1跟随鼠标旋转的特效:/UploadFile/201009/25/EC163338107.swf?url=2鼠标滑过旋转散花效果:/UploadFile/201009/25/EC163338107.swf?url=3鼠标滑过变幻光点:/UploadFile/201009/25/EC163338107.swf?url=4鼠标跟随蓝色星星:/UploadFile/201009/25/EC163338107.swf?url=5鼠标跟随蓝幻光斑:/UploadFile/201009/25/EC163338107.swf?url=6
2023-09-28 02:11:551

怎么给自己的电脑添加鼠标特效代码

和上面的一样安 `````
2023-09-28 02:12:036

QQ空间的鼠标特效代码怎么用的?

先点自定义-空间网页上面的那有个地址的后面的那些字母数字!把那些字母数字删除了!把鼠标特效代码输入地址栏里!-按回车键就OK!在点保存就可以了
2023-09-28 02:12:171

空间鼠标跟随特效代码怎么用

打开QQ空间——自定义——把代码粘贴到地址栏(就是就是窗口最上面的,是每个网页都有的)——按回车键(Enter)——保存——好了
2023-09-28 02:12:252

怎么用hbuilder制作鼠标特效

亮略高于就挠互借敲
2023-09-28 02:12:402

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

不知道楼主是想自己亲自做呢还是调用别人的,如果自己做的话呢,就要学会flash的相关技术啦,如果是调用网络上的,二楼的朋友说的我相当同意,鼠标特效模块和教程可以到 www.flash.com 去看看,里面很多。
2023-09-28 02:12:473

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

朋友,您好。鼠标跟随是FALSH模块。要用添加模块的方法。先复制好模块地址,再打开空间,点装扮空间,增删模块,新建模块,FALSH模块,粘贴模块的地址,记得要先把地址栏里原有的http://去掉,边框选无,更多设置里选择透明FALSH,自动、循环播放,点模块右下角的小三角把模块拉到合适的大小,就可以保存了。给你几个可用的鼠标跟随模块的地址:
2023-09-28 02:12:551

有谁知道QQ空间鼠标特效代码怎样使用吗?要详细的,有用的。谢谢了

1点开主页.然后点装扮空间. 2再把特效的代码粘贴到地址栏里面。 3再点回车键。 4然后再保存方案就可以了!
2023-09-28 02:15:156

如何使用QQ空间flash鼠标特效代码

哈哈 很简单啊 进自己的空间之后 选择自定义 然后在输网址的地方输入代码 回车一下就OK啦
2023-09-28 02:15:291

vb图片跟着鼠标移动变化代码

鼠标移动图像功能。在vb中为了方面操作,给鼠标赋予了很多的功能,而图片跟着鼠标移动变化代码就是鼠标移动图像的功能,只需要在设置中的桌面特效里将该功能关闭鼠标即可正常使用了。VisualBasic(简称VB)是Microsoft公司开发的一种通用的基于对象的程序设计语言。
2023-09-28 02:15:351

鼠标经过导航菜单特效代码

要在CSS里面写样式
2023-09-28 02:15:421

求 js 特效,鼠标滑过,显示浮层

好像已经有人给你解答了我就不多啰嗦了呵呵呵!不过,“郁闷蓝点”的回答中的一部分代码:e.clientY会存在浏览器兼容性问题也就是说,这句代码在不同浏览器下,效果会不一样,或者干脆就没有效果所以这点你要注意
2023-09-28 02:15:513

关于Javascript 特效代码

本书以网站开发者在开发中遇到的实际问题和应该掌握的技术为中心,全面介绍了JavaScript在网站开发中各个方面的常用技术和技巧。全书共19章,分别是窗口/框架与导航条设计、表单及表单元素、实用JavaScript函数、日期和时间、文字特效、超级链接特效、操作表格、图形图像与多媒体、页面特效、状态栏特效、报表与打印、网站安全、HTML/CSS样式、JavaScript与XML、JavaScript与ASP结合、JavaScript与JSP结合、JavaScript与ASP.NET结合、JavaScript与PHP结合、综合应用等。全书共提供了401个实例,每个实例都突出实用性,其中大部分是网站开发者梦寐以求的问题解决方案。  本书附有配套光盘。光盘提供了书中所有实例的全部源代码,所有源代码都经过精心调试,在Windows XP/Windows 2000环境下测试通过,保证能够正常运行。  本书适用于广大计算机爱好者和编程人员使用,也可供大中专院校师生学习参考。
2023-09-28 02:15:593

求解:DW中鼠标经过放大图片 代码意思

很多代码虽然不知道是什么意思,但只要达到自己想要的效果就行了,DW的特效太多了,咱们不可能全部学会的,很多特效代码可以从网上搜索直接下载的!望采纳
2023-09-28 02:16:081

哪里有qq空间鼠标特效代码?不要改变鼠标形状的,要跟随鼠标的。

好像米有代码,只有自己弄,很复杂很复杂,我弄了好长时间也没弄好 只有去找模块,非主流模块这种鼠标特效的应该很多的
2023-09-28 02:16:141

ASP网页想加上鼠标特效果..怎么实现

ASP页面输出的也是HTML代码,在静态页面中能实现的效果理应在ASP页面也能实现
2023-09-28 02:16:333

jQuery如何实现鼠标悬停导航下划线滑出的效果

这篇文章主要为大家详细介绍了jquery鼠标悬停导航下划线滑出效果,菜单鼠标悬停出现下划线,向两边扩展的效果,具有一定的参考价值,感兴趣的小伙伴们可以参考一下本文实例为大家分享了jquery鼠标悬停导航下划线滑出效果的具体代码,供大家参考,具体内容如下<!doctype html><html><head><meta charset="utf-8"><title>jquery鼠标悬停导航下划线滑出效果</title><style>*{ margin:0; padding:0; list-style:none;}img{ border:0;}.header{ width:100%; background:#F5F5F5;}.nav{ width:1000px; margin:0 auto; overflow:hidden;}.nav ul li{ height:40px; line-height:40px; float:left; padding:10px 5px; margin:0px 5px;position:relative;}.nav ul li a{ color:#666; font-family:"Microsoft Yahei"; font-size:14px; text-decoration:none;}.nav ul li a:hover{ color:#000; text-decoration:none;}.nav ul li span{ display:block; position:absolute; width:0px; height:0px; background:#1FAEFF; top:58px; left:50%;}</style></head><body><p class="header"><p class="nav"><ul><li><a>首页</a><span></span></li><li><a>菜单导航</a><span></span></li><li><a>时间日期</a><span></span></li><li><a>焦点图</a><span></span></li><li><a>tab标签</a><span></span></li><li><a>jquery特效</a><span></span></li><li><a>相册代码</a><span></span></li><li><a>图片特效</a><span></span></li><li><a>名站特效</a><span></span></li></ul></p></p><script src="http://apps.bdimg.com/libs/jquery/2.1.1/jquery.min.js"></script><script>$(function(){$(".nav li").hover(function(){$("span",this).stop().css("height","2px");$("span",this).animate({left:"0",width:"100%",right:"0"},200);},function(){$("span",this).stop().animate({left:"50%",width:"0"},200);});});</script></body></html>
2023-09-28 02:16:401

想弄移动鼠标时后面有星星什么的出现的效果怎么弄,求解

网页特效代码!可以做出这个效果!在百度里一搜索网页特效代码 就出来!但是只限制在网站上使用!
2023-09-28 02:16:493

html怎么实现鼠标放在文字上显示文字(附带代码)?

< html >< head >< meta http-equiv ="Content-Type" content ="text/html; charset=gb2312" >< title > 非常不错的一款连接提示信息显示效果 </ title ></ head >< body ><!-- 将以下代码加入HTML的<Body></Body>之间 -->< script language ="javascript" >function openUser(id) {var Win = window.open("dispuser.asp?name="+id,"openScript");}function openScript(url, width, height){var Win = window.open(url,"openScript","width=" + width + ",height=" + height + ",resizable=1,scrollbars=yes,menubar=no,status=yes" );}function openDis(bid,rid,id){self.location="dispbbs.asp?boardid="+bid+"&RootID="+rid+"&id="+id}function PopWindow(){openScript("messanger.asp?action=newmsg",420,320);}var nn = !!document.layers;var ie = !!document.all;if (nn) {netscape.security.PrivilegeManager.enablePrivilege("UniversalSystemClipboardAccess");var fr=new java.awt.Frame();var Zwischenablage = fr.getToolkit().getSystemClipboard();}function submitonce(theform){//if IE 4+ or NS 6+if (document.all||document.getElementById){//screen thru every element in the form, and hunt down "submit" and "reset"for (i=0;i<theform.length;i++){var tempobj=theform.elements[i]if(tempobj.type.toLowerCase()=="submit"||tempobj.type.toLowerCase()=="reset")//disable emtempobj.disabled=true}}}</ script >< script Language ="JavaScript" >//***********默认设置定义.*********************tPopWait=50;//停留tWait豪秒后显示提示。tPopShow=2000;//显示tShow豪秒后关闭提示showPopStep=20;popOpacity=99;//***************内部变量定义*****************sPop=null;curShow=null;tFadeOut=null;tFadeIn=null;tFadeWaiting=null;document.write("<style type="text/css"id="defaultPopStyle">");document.write(".cPopText { background-color: #FFFFFF;color:#000000; border: 1px #000000 solid;font-color: font-size: 10px; padding-right: 4px; padding-left: 4px; height: 20px; padding-top: 2px; padding-bottom: 2px; filter: Alpha(Opacity=0)}");document.write("</style>");document.write("<div id="dypopLayer" style="position:absolute;z-index:1000;" class="cPopText"></div>");function showPopupText(){var o=event.srcElement;MouseX=event.x;MouseY=event.y;if(o.alt!=null && o.alt!=""){o.dypop=o.alt;o.alt=""};if(o.title!=null && o.title!=""){o.dypop=o.title;o.title=""};if(o.dypop!=sPop) {sPop=o.dypop;clearTimeout(curShow);clearTimeout(tFadeOut);clearTimeout(tFadeIn);clearTimeout(tFadeWaiting);if(sPop==null || sPop=="") {dypopLayer.innerHTML="";dypopLayer.style.filter="Alpha()";dypopLayer.filters.Alpha.opacity=0;}else {if(o.dyclass!=null) popStyle=o.dyclasselse popStyle="cPopText";curShow=setTimeout("showIt()",tPopWait);}}}function showIt(){dypopLayer.className=popStyle;dypopLayer.innerHTML=sPop;popWidth=dypopLayer.clientWidth;popHeight=dypopLayer.clientHeight;if(MouseX+12+popWidth>document.body.clientWidth) popLeftAdjust=-popWidth-24else popLeftAdjust=0;if(MouseY+12+popHeight>document.body.clientHeight) popTopAdjust=-popHeight-24else popTopAdjust=0;dypopLayer.style.left=MouseX+12+document.body.scrollLeft+popLeftAdjust;dypopLayer.style.top=MouseY+12+document.body.scrollTop+popTopAdjust;dypopLayer.style.filter="Alpha(Opacity=0)";fadeOut();}function fadeOut(){if(dypopLayer.filters.Alpha.opacity<popOpacity) {dypopLayer.filters.Alpha.opacity+=showPopStep;tFadeOut=setTimeout("fadeOut()",1);}else {dypopLayer.filters.Alpha.opacity=popOpacity;tFadeWaiting=setTimeout("fadeIn()",tPopShow);}}function fadeIn(){if(dypopLayer.filters.Alpha.opacity>0) {dypopLayer.filters.Alpha.opacity-=1;tFadeIn=setTimeout("fadeIn()",1);}}document.onmouseover=showPopupText;</ script >< style type ="text/css"id="defaultPopStyle" >A:visited{TEXT-DECORATION: none;Color:#000000}A:active{TEXT-DECORATION: none;Color:#000000}A:hover{TEXT-DECORATION: underline;Color:#000000}A:link{text-decoration: none;Color:#000000}.t{LINE-HEIGHT: 1.4}BODY{FONT-FAMILY: "宋体"; FONT-SIZE: 12px;SCROLLBAR-HIGHLIGHT-COLOR: #9BDBDB;SCROLLBAR-SHADOW-COLOR: #9BDBDB;SCROLLBAR-3DLIGHT-COLOR: #9BDBDB;SCROLLBAR-TRACK-COLOR: #FFFFFF;SCROLLBAR-DARKSHADOW-COLOR: #9BDBDB;scrollbar-Base-Color: #9BDBDB;Color:#000000}td, p, div, br{FONT-FAMILY: "宋体"; FONT-SIZE: 12px;Color:#000000;}FORM{FONT-FAMILY: "宋体"; FONT-SIZE: 12px}OPTION{FONT-FAMILY: "宋体"; FONT-SIZE: 12px}INPUT{BORDER-TOP-WIDTH: 1px; PADDING-RIGHT: 1px; PADDING-LEFT: 1px; BORDER-LEFT-WIDTH: 1px; FONT-SIZE: 9pt; BORDER-LEFT-COLOR: #cccccc; BORDER-BOTTOM-WIDTH: 1px; BORDER-BOTTOM-COLOR: #cccccc; PADDING-BOTTOM: 1px; BORDER-TOP-COLOR: #cccccc; PADDING-TOP: 1px; HEIGHT: 18px; BORDER-RIGHT-WIDTH: 1px; BORDER-RIGHT-COLOR: #cccccc; font-family: "宋体"; font-size: 12px}textarea {border-width: 1; border-color: #000000; background-color: #efefef; font-family: "宋体"; font-size: 12px; font-style: bold;}select {border-width: 1; border-color: #000000; background-color: #eeeeee; font-family: "宋体"; font-size: 12px; font-style: bold;}</ style >< a href ="#" title ="几千个网页特效<BR>网页美容专家<BR>轻轻松松为你的网页作美容<BR>欢迎您的光临 :)<BR>" > 网页特效 </ a ></ body ></ html >
2023-09-28 02:16:582

jquery 手风琴特效 鼠标点击触发效果怎么改

请把页面和css贴出来先
2023-09-28 02:17:082

请教 鼠标特效 鼠标放到链接上就会出现一个说明框,里面有滚动的文字说明

<div id="tooltip2" style="position:absolute;visibility:hidden;clip:rect(0 150 50 0);width:150px;background-color:seashell"> <layer name="nstip" width=1000px bgColor="seashell"></layer> </div> <SCRIPT language="JavaScript"> <!-- 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 } //--> </SCRIPT> <a href=# onMouseOver="showtip2(this,event,"看到了吧?")" onMouseOut="hidetip2()">把鼠标放上来试试</a>
2023-09-28 02:17:161

鼠标经过显示描述 css代码

貌似是伪类吧……
2023-09-28 02:17:264

vb鼠标滚轮问题

标滚轮能给系统的使用带来很大便利,如使用滚轮移动选择这项,但在VB中的一些常用控件(如:文件框、列表框等)中没有提供鼠标滚轮滚动选择的效果。现将自己写的鼠标滚轮特效实现代码分享给大家:   本例子就是一个对Win32 API的调用,达到对ListBox、PictureBox等的鼠标滚轮控制。首先,申明windows API调用,将其放在模块modWheel中,以供用户控件使用。原理很简单,通过鼠标滚轮可以对如下白色的横线进行控制,效果图如下:  相关代码如下: 鼠标滚轮处理模块(modWheel) Declare Sub CopyMemory Lib "kernel32" Alias "RtlMoveMemory" _ (pDest As Any, pSource As Any, ByVal ByteLen As Long)Declare Function GetWindowLong Lib "user32" Alias "GetWindowLongA" _ (ByVal hWnd As Long, ByVal nIndex As Long) As LongDeclare Function SetWindowLong Lib "user32" Alias "SetWindowLongA" _ (ByVal hWnd As Long, ByVal nIndex As Long, _ ByVal dwNewLong As Long) As LongPublic Const GWL_WNDPROC = (-4)Declare Function CallWindowProc Lib "user32" Alias "CallWindowProcA" _ (ByVal lpPrevWndFunc As Long, ByVal hWnd As Long, _ ByVal Msg As Long, ByVal wParam As Long, _ ByVal lParam As Long) As LongDeclare Function SetProp Lib "user32" Alias "SetPropA" _ (ByVal hWnd As Long, ByVal lpString As String, _ ByVal hData As Long) As LongDeclare Function GetProp Lib "user32" Alias "GetPropA" _ (ByVal hWnd As Long, ByVal lpString As String) As LongDeclare Function RemoveProp Lib "user32" Alias "RemovePropA" _ (ByVal hWnd As Long, ByVal lpString As String) As LongDeclare Function GetParent Lib "user32" (ByVal hWnd As Long) As LongPublic Const WM_MOUSEWHEEL = &H20APublic Const WM_MOUSELAST = &H20APublic Const WHEEL_DELTA = 120Public Function HIWORD(LongIn As Long) As Integer HIWORD = (LongIn And &HFFFF0000) &H10000End FunctionPublic Function MWheelProc(ByVal hWnd As Long, _ByVal wMsg As Long, ByVal wParam As Long, _ByVal lParam As Long) As Long Dim OldProc As Long Dim CtlWnd As Long Dim CtlPtr As Long Dim IntObj As Object Dim MWObject As MWheel CtlWnd = GetProp(hWnd, "WheelWnd") CtlPtr = GetProp(CtlWnd, "WheelPtr") OldProc = GetProp(CtlWnd, "OldWheelProc") If wMsg = WM_MOUSEWHEEL Then CopyMemory IntObj, CtlPtr, 4 Set MWObject = IntObj MWObject.WndProc hWnd, wMsg, wParam, lParam Set MWObject = Nothing CopyMemory IntObj, 0&, 4 Exit Function End If MWheelProc = CallWindowProc(OldProc, hWnd, wMsg, wParam, lParam)End FunctionPublic Sub Subclass(MWCtl As MWheel, ParentWnd As Long) If GetProp(MWCtl.hWnd, "OldWheelProc") <> 0 Then Exit Sub End If SetProp MWCtl.hWnd, "OldWheelProc", _ GetWindowLong(ParentWnd, GWL_WNDPROC) SetProp MWCtl.hWnd, "WheelPtr", ObjPtr(MWCtl) SetProp ParentWnd, "WheelWnd", MWCtl.hWnd SetWindowLong ParentWnd, GWL_WNDPROC, AddressOf MWheelProcEnd SubPublic Sub UnSubclass(MWCtl As MWheel, ParentWnd As Long) Dim OldProc As Long OldProc = GetProp(MWCtl.hWnd, "OldWheelProc") If OldProc = 0 Then Exit Sub SetWindowLong ParentWnd, GWL_WNDPROC, OldProc RemoveProp ParentWnd, "WheelWnd" RemoveProp MWCtl.hWnd, "WheelPtr" RemoveProp MWCtl.hWnd, "OldWheelProc"End Sub然后,定义用户控件MWheel,实现对相关控件鼠标滚轮事件的处理。用户控件(MWheel)代码 Option ExplicitDim m_CapWnd As LongDim m_Subclassed As BooleanEvent WheelScroll(Shift As Integer, zDelta As Integer, _ X As Single, Y As Single)Private Sub UserControl_Resize() Size 32 * Screen.TwipsPerPixelX, 32 * Screen.TwipsPerPixelYEnd SubPublic Sub DisableWheel() If m_CapWnd = 0 Then Exit Sub If m_Subclassed = False Then Exit Sub UnSubclass Me, m_CapWnd m_Subclassed = FalseEnd SubPublic Sub EnableWheel() If m_CapWnd = 0 Then Exit Sub m_Subclassed = True Subclass Me, m_CapWndEnd SubFriend Property Get hWnd() As Long hWnd = UserControl.hWndEnd PropertyPublic Property Get hWndCapture() As Long hWndCapture = m_CapWndEnd PropertyPublic Property Let hWndCapture(ByVal vNewValue As Long) m_CapWnd = vNewValueEnd PropertyFriend Sub WndProc(ByVal hWnd As Long, _ByVal wMsg As Long, ByVal wParam As Long, ByVal lParam As Long) Dim wShift As Integer Dim wzDelta As Integer Dim wX As Single, wY As Single wzDelta = HIWORD(wParam) wY = HIWORD(lParam) RaiseEvent WheelScroll(wShift, wzDelta, wX, wY)End Sub最后,就可以将定义的用户控件用在vb窗体编程中,实现对鼠标滚轮事件的监听和处理,测试主窗体如下:Option ExplicitDim KAs As LongDim KA1 As LongDim KA2 As LongPrivate Sub Picture1_Click()MWheel1.hWndCapture = Picture1.hWndMWheel1.EnableWheelEnd SubPrivate Sub List1_Click()MWheel2.hWndCapture = List1.hWndMWheel2.EnableWheelKA1 = List1.ListCountEnd SubPrivate Sub File1_Click()MWheel3.hWndCapture = File1.hWndMWheel3.EnableWheelKA1 = File1.ListCountEnd SubPrivate Sub MWheel2_WheelScroll(Shift As Integer, zDelta As Integer, X As Single, Y As Single)If KAs > 0 ThenIf zDelta = 120 ThenKAs = KAs - 1List1.ListIndex = KAsEnd IfEnd IfIf KAs < KA1 - 1 ThenIf zDelta = -120 ThenKAs = KAs + 1List1.ListIndex = KAsEnd IfEnd IfEnd SubPrivate Sub MWheel1_WheelScroll(Shift As Integer, zDelta As Integer, X As Single, Y As Single)If zDelta = 120 ThenKA2 = KA2 - 5Line1.Y1 = KA2Line1.Y2 = KA2End IfIf zDelta = -120 ThenKA2 = KA2 + 5Line1.Y1 = KA2Line1.Y2 = KA2End IfEnd SubPrivate Sub MWheel3_WheelScroll(Shift As Integer, zDelta As Integer, X As Single, Y As Single)If KAs > 0 ThenIf zDelta = 120 ThenKAs = KAs - 1File1.ListIndex = KAsEnd IfEnd IfIf KAs < KA1 - 1 ThenIf zDelta = -120 ThenKAs = KAs + 1File1.ListIndex = KAsEnd IfEnd IfEnd Sub</SPAN>
2023-09-28 02:17:421

谁能传授几招制作网页特效的方法?

鼠标特效代码<body bgcolor="#000000"><script language="JavaScript"><!-- //Choose colours and size of effect !!var a_Colour="fff000";var b_Colour="00ff00";var c_Colour="ff00ff";var Size=120;//Alter nothing below !!var YDummy=new Array(),XDummy=new Array(),xpos=0,ypos=0,ThisStep=0;step=0.6;if (document.layers){window.captureEvents(Event.MOUSEMOVE);function nsMouse(evnt){xpos = window.pageYOffset+evnt.pageX+6;ypos = window.pageYOffset+evnt.pageY+16;}window.onMouseMove = nsMouse;}else if (document.all){function ieMouse(){xpos = document.body.scrollLeft+event.x+6;ypos = document.body.scrollTop+event.y+16;}document.onmousemove = ieMouse;}function swirl(){for (i = 0; i < 3; i++) { YDummy[i]=ypos+Size*Math.sin((1*Math.sin((ThisStep)/10))+i*2)*Math.sin((ThisStep)/4); XDummy[i]=xpos+Size*Math.cos((1*Math.sin((ThisStep)/10))+i*2)*Math.sin((ThisStep)/4); }ThisStep+=step;setTimeout("swirl()",10);}var amount=10;if (document.layers){for (i = 0; i < amount; i++){document.write("<layer name=nsa"+i+" top=0 left=0 width="+i/2+" height="+i/2+" bgcolor="+a_Colour+"></layer>");document.write("<layer name=nsb"+i+" top=0 left=0 width="+i/2+" height="+i/2+" bgcolor="+b_Colour+"></layer>");document.write("<layer name=nsc"+i+" top=0 left=0 width="+i/2+" height="+i/2+" bgcolor="+c_Colour+"></layer>");}}else if (document.all){document.write("<div id="ODiv" style="position:absolute;top:0px;left:0px">"+"<div id="IDiv" style="position:relative">");for (i = 0; i < amount; i++){document.write("<div id=x style="position:absolute;top:0px;left:0px;width:"+i/2+";height:"+i/2+";background:"+a_Colour+";font-size:"+i/2+""></div>");document.write("<div id=y style="position:absolute;top:0px;left:0px;width:"+i/2+";height:"+i/2+";background:"+b_Colour+";font-size:"+i/2+""></div>");document.write("<div id=z style="position:absolute;top:0px;left:0px;width:"+i/2+";height:"+i/2+";background:"+c_Colour+";font-size:"+i/2+""></div>");}document.write("</div></div>");}function prepos(){var ntscp=document.layers;var msie=document.all;if (document.layers){for (i = 0; i < amount; i++){ if (i < amount-1) { ntscp["nsa"+i].top=ntscp["nsa"+(i+1)].top;ntscp["nsa"+i].left=ntscp["nsa"+(i+1)].left; ntscp["nsb"+i].top=ntscp["nsb"+(i+1)].top;ntscp["nsb"+i].left=ntscp["nsb"+(i+1)].left; ntscp["nsc"+i].top=ntscp["nsc"+(i+1)].top;ntscp["nsc"+i].left=ntscp["nsc"+(i+1)].left; } else { ntscp["nsa"+i].top=YDummy[0];ntscp["nsa"+i].left=XDummy[0]; ntscp["nsb"+i].top=YDummy[1];ntscp["nsb"+i].left=XDummy[1]; ntscp["nsc"+i].top=YDummy[2];ntscp["nsc"+i].left=XDummy[2]; }}}else if (document.all){for (i = 0; i < amount; i++){ if (i < amount-1) { msie.x[i].style.top=msie.x[i+1].style.top;msie.x[i].style.left=msie.x[i+1].style.left; msie.y[i].style.top=msie.y[i+1].style.top;msie.y[i].style.left=msie.y[i+1].style.left; msie.z[i].style.top=msie.z[i+1].style.top;msie.z[i].style.left=msie.z[i+1].style.left; } else { msie.x[i].style.top=YDummy[0];msie.x[i].style.left=XDummy[0]; msie.y[i].style.top=YDummy[1];msie.y[i].style.left=XDummy[1]; msie.z[i].style.top=YDummy[2];msie.z[i].style.left=XDummy[2]; }}}setTimeout("prepos()",10);}function Start(){swirl(),prepos()}window.onload=Start;// --></script>
2023-09-28 02:17:482

鼠标上下滚动控制页面左右滚动的代码

<html><head><metahttp-equiv="Content-Type"content="text/html;charset=gb2312"><title>网页特效观止|JsCode.CN|---用鼠标和按钮控制网页内容的上下滚动</title></head><body><divalign="center"><tableborder="0"width="565"cellpadding="0"style="border-collapse:collapse"id="table1"><tr><scriptlanguage="JavaScript">functionscroll(n){temp=n;News.scrollTop=News.scrollTop+temp;if(temp==0)return;setTimeout("scroll(temp)",20);}
2023-09-28 02:17:582

我想要QQ空间鼠标特效代码

那些代码现在都不能用了……网友专家,质量保证。如果有了满意的回答请及时采纳,不要辜负了回答者!
2023-09-28 02:18:162

网页导航特效:鼠标放上去二级菜单后自动展开,鼠标离开后自动缩回,展开缩回的速度要控制一下!

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><title>runcode</title><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><meta name="Author" content="Sheneyan" /><script type="text/javascript">var mh = 30;//最小高度var step = 5;//每次变化的px量var ms = 1;//每隔多久循环一次function toggle(o){ if (!o.tid)o.tid = "_" + Math.random() *200; if (!window.toggler)window.toggler = {}; if (!window.toggler[o.tid]){ window.toggler[o.tid]={ obj:o, maxHeight:o.offsetHeight, minHeight:mh, timer:null, action:-1 }; } o.style.height = o.offsetHeight + "px"; if (window.toggler[o.tid].timer)clearTimeout(window.toggler[o.tid].timer); window.toggler[o.tid].action *= -1; window.toggler[o.tid].timer = setTimeout("anim(""+o.tid+"")",ms );}function anim(id){ var t = window.toggler[id]; var o = window.toggler[id].obj; if (t.action < 0){ if (o.offsetHeight <= t.minHeight){ clearTimeout(t.timer); return; } } else{ if (o.offsetHeight >= t.maxHeight){ clearTimeout(t.timer); return; } } o.style.height = (parseInt(o.style.height, 10) + t.action * step) + "px"; window.toggler[id].timer = setTimeout("anim(""+id+"")",ms );}</script><style type="text/css">div.xx{border:solid 1px;overflow:hidden;}div.xx h5{border:solid 1px;border-width:0 0 1px;padding:0;margin:0;height:30px;line-height:30px;cursor:pointer;background:#eee;}</style></head><body><div class="xx"> <h5 onmouseover="toggle(this.parentNode)" onmouseout="toggle(this.parentNode)">伸缩效果</h5> <div><p>内容1</p><p>内容2</p><p>内容3</p><p>内容4</p></div></div> </body></html> 行不
2023-09-28 02:18:231

鼠标跟随flash怎么弄

去网上 搜一个 再 弄到空间
2023-09-28 02:18:303

HTML图片鼠标悬停效果设置!

就是标签hover的写法,你可看下页面的代码和CSS里的定义。
2023-09-28 02:18:372

如何制作代码??

页面流星飞舞:<a href="http://tenting135.heima.com/" target="_blank"><DIV style="POSITION: absolute;left: 00px"><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0"width="700" height="500"><param name="movie" value="http://imgfree.21cn.com/free/flash/1.swf"><paramname="wmode" value="transparent"><embed src="http://imgfree.21cn.com/free/flash/1.swf"type="application/x-shockwave-flash"></embed></object></DIV></a>将上面的代码复制到你的第一篇日记的html里鼠标美化代码:<DIV><STYLE type=text/css>BODY{cursor:url(鼠标代码地址);}A {CURSOR: url(鼠标代码地址);}</STYLE></DIV>鼠标样式代码地址大全:http://puleier.com/user/xueerzihou/archives/2006/13790.html部分已做好的鼠标美化代码:代号:001代码:<DIV><STYLE type=text/css>BODY{cursor:url(http://webme.bokee.com/inc/mouse001.ani);}A {CURSOR: url(http://webme.bokee.com/inc/mouse001.ani);}</STYLE></DIV>代号:002代码:<DIV><STYLE type=text/css>BODY{cursor:url(http://webme.bokee.com/inc/mouse002.ani);}A {CURSOR: url(http://webme.bokee.com/inc/mouse002.ani);}</STYLE></DIV>代号:003代码:<DIV><STYLE type=text/css>BODY{cursor:url(http://webme.bokee.com/inc/mouse003.ani);}A {CURSOR: url(http://webme.bokee.com/inc/mouse003.ani);}</STYLE></DIV>代号:004代码:<DIV><STYLE type=text/css>BODY{cursor:url(http://webme.bokee.com/inc/mouse004.ani);}A {CURSOR: url(http://webme.bokee.com/inc/mouse004.ani);}</STYLE></DIV>网页背景特效:落``桃花叶子的代码<><EMBED style="LEFT: 0px; pOSITION: absolute; TOP: -140px; absolute: " align=right src=http://imgfree.21cn.com/free/flash/113.swf width=1000 height=1500 type=application/x-shockwave-flash ;; quality="high" wmode="transparent"></P>落~~紫花朵的代码<DIV id=bgclocknoshade style="FONT-SIZE: 20px; LEFT: 170px; VISIBILITY: visible; COLOR: #000000; FONT-FAMILY: "Arial black"; OSITION: absolute; TOP: 48px"></DIV><DIV id=mainbody style="VISIBILITY: visible; OSITION: absolute"></DIV><CENTER><EMBED style="RIGHT: 300px; WIDTH: 1000px; OSITION: absolute; TOP: 0px; HEIGHT: 1500px" align=right src=http://bbs.flasher123.com/UploadFile/2004-9/20049120533895073.swf type=application/octet-stream ;; quality="high" wmode="transparent"> </CENTER>鼠标代码:可爱的乌龟<DIV><STYLE type=text/css>BODY{cursor:url(http://webme.bokee.com/inc/mouse012.ani);}A {CURSOR: url(http://webme.bokee.com/inc/mouse012.ani);}</STYLE></DIV>时尚的苹果<DIV><STYLE type=text/css>BODY{cursor:url(http://webme.bokee.com/inc/mouse033.cur);}A {CURSOR: url(http://webme.bokee.com/inc/mouse033.cur);}</STYLE></DIV>物体代码:两只蝴蝶飞舞<EMBED style="LEFT: 0px; pOSITION: absolute; TOP: -140px; absolute: " align=right src=http://www.mcscn.net/PageLayout/UserDataA/Data27/USID200404031004017231/Articles/Images/040711074202734.swf width=1000 height=700 type=application/x-shockwave-flash ;; quality="high" wmode="transparent"></TD></TR></TBODY>玫瑰<EMBED style="LEFT: 50px; WIDTH: 500px; OSITION: absolute; TOP: 100px; HEIGHT: 500px" align=left src=http://favorites2003.vicp.net/picture/cl/2.swf width=300 height=0000 type=application/octet-stream wmode="transparent" quality="high" ;;></EMBED>三只可爱的鱼<TD vAlign=top align=left width="90%"><EMBED style="LEFT: 150px; OSITION: absolute; TOP: 20px; absolute: " align=right src=http://chenmo521.51.net/dama/flash/flash/010.swf width=800 height=600 type=application/x-shockwave-flash wmode="transparent" quality="high" ;;></TD>注意:只要复制下代码然后将这些代码加到html语言中就可以了,代码稍作修改就可以了。
2023-09-28 02:18:472

有没有关于新浪博客的鼠标代码的网站?

安装使用特效鼠标时的注意事项: 添加flash鼠标源代码,必须贴在已经有内容的面板里。如果是新增加的面板,至少先要在面板里写上一个字或是字符(为了不影响网页的美观,可在面板里先贴一张喜欢的图片,或是文章分隔线之类的小装饰图,然后再贴源代码,以此来实现已有内容面板的目的),否则flash鼠标特效无效! 具体操作是:一:打开控制面板—我的首页维护—自定义面板—在已有的自定义面板中打开一个,钩选“显示原代码”把动态鼠标的代码粘贴到最后面点保存即可。二:如果是新建的面板需要先输入几个字符,然后钩选原代码粘贴进去保存,然后点击“定制我的首页”里添加这个模块构选你设定得名称-选取-保存设计就可以了 http://myok.bokee.com/3429184.html里面有很多鼠标的特效~
2023-09-28 02:18:541

请问如何取消QQ空间鼠标特效?我用的是在地址栏输入代码的那种!是一只鸟的!

你在地址栏上在输一次你的代码就没有了!要不以安全模式进入空间!在保存!这样你的空间就还原到最初的样子!也会没有的!
2023-09-28 02:19:001