首页 > 语言 > JavaScript > 正文

javascript关于运动的各种问题经典总结

2024-05-06 16:18:50
字体:
来源:转载
供稿:网友

这篇文章主要介绍了javascript关于运动的各种问题,实例总结了javascript关于滚动的常见错误、实现方法与相关注意事项,非常具有实用价值,需要的朋友可以参考下

本文实例总结了javascript关于运动的各种问题。分享给大家供大家参考。具体如下:

一、JS运动的各种问题

问题一:

错误代码:

 

 
  1. function startMove(){  
  2. var timer=null;  
  3. var div1=document.getElementById("div1");  
  4. if (div1.offsetLeft==300){  
  5. clearInterval(timer);  
  6. }else{  
  7. timer=setInterval(function(){  
  8. div1.style.left=div1.offsetLeft+10+"px";  
  9. },30)  
  10. }  

希望实现的功能:

打开定时器timer,让div1运动到300px,然后让div1停下即关掉定时器。

错误之处:

if语句错误,代码首先设置一个null定时器timer,然后如果div1的左边距为300px,则关掉定时器timer。否则一直运动。但是if并不是循环语句,if语句执行一次之后将不再执行。所以永远不会关闭定时器。

正确代码:

 

 
  1. var timer=null;  
  2. function startMove(){  
  3. var div1=document.getElementById("div1");  
  4. timer=setInterval(function(){  
  5. if (div1.offsetLeft==300){  
  6. clearInterval(timer);  
  7. }  
  8. div1.style.left=div1.offsetLeft+10+"px";  
  9. },30)  

问题二:

错误代码:

 

 
  1. function startMove(){  
  2. var speed=1;  
  3. var timer=null;  
  4. var oDiv1=document.getElementById("div1");  
  5. clearInterval(timer);  
  6. timer=setInterval(function(){  
  7. if (oDiv1.offsetLeft>=300){  
  8. clearInterval(timer);  
  9. }else{  
  10. oDiv1.style.left=oDiv1.offsetLeft+speed+"px";  
  11. }  
  12. },30)  

希望实现的功能:

连续点击开始按钮,div1会加速,这是因为每当点击按钮一次,就会开启一个定时器,累积起来就会加速,所以要在开启定时器之前不管有没有定时器开启都要先关闭一次定时器。但是添加了关闭定时器的clearInterval方法之后,依然会加速。

错误之处:

将timer变量放在了startMove方法里面,相当于每点击一次按钮,就会执行一次startMove方法,生成了一个闭包,因此创建了一个局部timer,每一个闭包当中的timer并不会共享,所以还是相当于生成了点击次数的闭包timer。

正确代码:

 

 
  1. var timer=null;  
  2. function startMove(){  
  3. var speed=1;  
  4. var oDiv1=document.getElementById("div1");  
  5. clearInterval(timer);  
  6. timer=setInterval(function(){  
  7. if (oDiv1.offsetLeft>=300){  
  8. clearInterval(timer);  
  9. }else{  
  10. oDiv1.style.left=oDiv1.offsetLeft+speed+"px";  
  11. }  
  12. },30)  

实现分享栏进出功能:

代码:

 

 
  1. <!DOCTYPE html>  
  2. <html>  
  3. <head lang="en">  
  4. <meta charset="UTF-8">  
  5. <title></title>  
  6. <style type="text/css">  
  7. #div1{  
  8. width: 150px;  
  9. height: 200px;  
  10. background: burlywood;  
  11. position: absolute;  
  12. left: -150px;  
  13. }  
  14. span{  
  15. width: 20px;  
  16. height: 60px;  
  17. position: absolute;  
  18. background: gold;  
  19. right: -20px;  
  20. top: 70px;  
  21. }  
  22. </style>  
  23. <script>  
  24. window.onload=function(){  
  25. var oDiv1=document.getElementById("div1");  
  26. oDiv1.onmouseover=function(){  
  27. move(0);  
  28. };  
  29. oDiv1.onmouseout=function(){  
  30. move(-150);  
  31. };  
  32. };  
  33. var timer=null;  
  34. function move(target){  
  35. var oDiv1=document.getElementById("div1");  
  36. var speed=0;  
  37. if (oDiv1.offsetLeft<target){  
  38. speed=10;  
  39. }else{  
  40. speed=-10;  
  41. }  
  42. clearInterval(timer);  
  43. timer=setInterval(function(){  
  44. if(oDiv1.offsetLeft==target){  
  45. clearInterval(timer);  
  46. }else{  
  47. oDiv1.style.left=oDiv1.offsetLeft+speed+"px";  
  48. }  
  49. },30);  
  50. }  
  51. </script>  
  52. </head>  
  53. <body>  
  54. <div id="div1">  
  55. <span id="span1">分享到</span>  
  56. </div>  
  57. </body>  
  58. </html> 

实现图片淡入淡出功能:

代码:

 

 
  1. <!DOCTYPE html>  
  2. <html>  
  3. <head lang="en">  
  4. <meta charset="UTF-8">  
  5. <title></title>  
  6. <style> 
  7. #div1{  
  8. width: 200px;  
  9. height: 200px;  
  10. background: red;  
  11. position: absolute;  
  12. filter: alpha(opacity:30);  
  13. opacity: 0.3;  
  14. }  
  15. </style>  
  16. <script>  
  17. window.onload=function(){  
  18. var oDiv1=document.getElementById("div1");  
  19. oDiv1.onmouseover=function(){  
  20. move(100);  
  21. };  
  22. oDiv1.onmouseout=function(){  
  23. move(30);  
  24. };  
  25. };  
  26. var timer=null;  
  27. var alpha=30;  
  28. function move(target){  
  29. var oDiv1=document.getElementById("div1");  
  30. var speed=0;  
  31. clearInterval(timer);  
  32. if(alpha<target){  
  33. speed=10;  
  34. }else{  
  35. speed=-10;  
  36. }  
  37. timer=setInterval(function(){  
  38. if (alpha==target){  
  39. clearInterval(timer);  
  40. }else{  
  41. alpha+=speed;  
  42. oDiv1.style.filter="alpha(opacity:"+alpha+")";  
  43. oDiv1.style.opacity=alpha/100;  
  44. }  
  45. },30);  
  46. };  
  47. </script>  
  48. </head>  
  49. <body>  
  50. <div id="div1">  
  51. </div>  
  52. </body>  
  53. </html> 

注意点:

1.因为在透明度上JavaScript并没有像左边距(offsetLeft)这样的属性。所以用一个alpha变量代替。

2.JavaScript代码中的行间透明度设置上需要考虑浏览器的兼容问题,ie浏览器设置方法为oDiv1.style.filter="aplha(opacity:"+aplha+")";

chrome和火狐为oDiv1.style.opacity=alpha/100。

实现滚动条事件:

代码:

 

 
  1. <!DOCTYPE html>  
  2. <html>  
  3. <head lang="en">  
  4. <meta charset="UTF-8">  
  5. <title></title>  
  6. <style type="text/css"
  7. #div1{  
  8. width: 100px;  
  9. height: 100px;  
  10. background: yellowgreen;  
  11. position: absolute;  
  12. bottom: 0px;  
  13. right: 0px;  
  14. }  
  15. </style>  
  16. <script>  
  17. window.onscroll=function(){  
  18. var oDiv=document.getElementById("div1");  
  19. var scrollTop=document.documentElement.scrollTop||document.body.scrollTop;  
  20. move(document.documentElement.clientHeight-oDiv.offsetHeight+scrollTop);  
  21. };  
  22. var timer=null;  
  23. function move(target){  
  24. var oDiv=document.getElementById("div1");  
  25. clearInterval(timer);  
  26. timer=setInterval(function(){  
  27. var speed=(target-oDiv.offsetTop)/10;  
  28. speed=speed>0?Math.ceil(speed):Math.floor(speed);  
  29. if (oDiv.offsetTop==target){  
  30. clearInterval(timer);  
  31. }else{  
  32. oDiv.style.top=oDiv.offsetTop+speed+'px';  
  33. }  
  34. },30)  
  35. };  
  36. </script>  
  37. </head>  
  38. <body style="height:2000px;">  
  39. <div id="div1"></div>  
  40. </body>  
  41. </html> 

二、JS多物体运动的各种问题

问题一:

希望实现的功能:三个平行div自由的平行缩放。

代码:

 

 
  1. <!DOCTYPE html>  
  2. <html>  
  3. <head lang="en">  
  4. <meta charset="UTF-8">  
  5. <title></title>  
  6. <style>  
  7. div{  
  8. width: 100px;  
  9. height: 50px;  
  10. background: yellow;  
  11. margin: 10px;  
  12. }  
  13. </style>  
  14. <script>  
  15. window.onload=function(){  
  16. var oDiv=document.getElementsByTagName('div');  
  17. for (var i=0;i<oDiv.length;i++){  
  18. oDiv[i].timer=null;  
  19. oDiv[i].onmouseover=function(){  
  20. move(300,this);  
  21. };  
  22. oDiv[i].onmouseout=function(){  
  23. move(100,this);  
  24. };  
  25. }  
  26. };  
  27. function move(iTarget,oDiv){  
  28. clearInterval(oDiv.timer);  
  29. oDiv.timer=setInterval(function(){  
  30. var speed=(iTarget-oDiv.offsetWidth)/5;  
  31. speed=speed>0?Math.ceil(speed):Math.floor(speed);  
  32. if (iTarget==oDiv.offsetWidth){  
  33. clearInterval(oDiv.timer);  
  34. }else{  
  35. oDiv.style.width=oDiv.offsetWidth+speed+"px";  
  36. }  
  37. },30);  
  38. }  
  39. </script>  
  40. </head>  
  41. <body>  
  42. <div id="div1"></div>  
  43. <div id="div2"></div>  
  44. <div id="div3"></div>  
  45. </body>  
  46. </html> 

注意事项:

多物体运动如果只是设置一个定时器(设置全局定时器)的话,那么三个div共用一个一个全局定时器,那么当一个div没有完成缩小动作的时候另一个div开启定时器执行伸展动作,由于定时器是全局的,那么上一个div的定时器将被覆盖即取消掉,故上一个定时器无法完全地昨晚缩小动作,解决办法是给每一个div设置一个属性timer。

问题二:

希望实现的功能:多图片的淡入淡出。

代码:

 

 
  1. <!DOCTYPE html>  
  2. <html>  
  3. <head lang="en">  
  4. <meta charset="UTF-8">  
  5. <title></title>  
  6. <style>  
  7. div{  
  8. width: 200px;  
  9. height: 200px;  
  10. margin: 10px;  
  11. background: yellow;  
  12. float: left;  
  13. filter: alpha(opacity:30);  
  14. opacity: 0.3;  
  15. }  
  16. </style>  
  17. <script>  
  18. window.onload=function(){  
  19. var oDiv=document.getElementsByTagName('div');  
  20. for(var i=0;i<oDiv.length;i++){  
  21. oDiv[i].timer=null;  
  22. oDiv[i].alpha=30;  
  23. oDiv[i].onmouseover=function(){  
  24. move(100,this);  
  25. };  
  26. oDiv[i].onmouseout=function(){  
  27. move(30,this);  
  28. };  
  29. }  
  30. };  
  31. function move(iTarget,obj){  
  32. clearInterval(obj.timer);  
  33. obj.timer=setInterval(function(){  
  34. var speed=(iTarget-obj.alpha)/30;  
  35. speed=speed>0?Math.ceil(speed):Math.floor(speed);  
  36. if (obj.alpha==iTarget){  
  37. clearInterval(obj.timer);  
  38. }else{  
  39. obj.alpha+=speed;  
  40. obj.style.filter="alpha(opacity:"+obj.alpha+")";  
  41. obj.style.opacity=obj.alpha/100;  
  42. }  
  43. },30);  
  44. }  
  45. </script>  
  46. </head>  
  47. <body>  
  48. <div></div>  
  49. <div></div>  
  50. <div></div>  
  51. <div></div>  
  52. </body>  
  53. </html> 

希望实现的功能:多物体不同方向的伸缩功能。

代码:

 

 
  1. <!DOCTYPE html>  
  2. <html>  
  3. <head lang="en">  
  4. <meta charset="UTF-8">  
  5. <title></title>  
  6. <style>  
  7. div{  
  8. width: 100px;  
  9. height: 100px;  
  10. margin: 10px;  
  11. background: yellow;  
  12. float: left;  
  13. border: 10px solid black;  
  14. }  
  15. </style>  
  16. <script>  
  17. window.onload=function(){  
  18. var oDiv1=document.getElementById('div1');  
  19. var oDiv2=document.getElementById('div2');  
  20. oDiv1.timer=null;  
  21. oDiv2.timer=null;  
  22. oDiv1.onmouseover=function(){  
  23. move(this,400,'height');  
  24. };  
  25. oDiv1.onmouseout=function(){  
  26. move(this,100,'height');  
  27. };  
  28. oDiv2.onmouseover=function(){  
  29. move(this,400,'width');  
  30. };  
  31. oDiv2.onmouseout=function(){  
  32. move(this,100,'width');  
  33. };  
  34. };  
  35. function getStyle(obj,name){  
  36. if(obj.currentStyle){  
  37. return obj.currentStyle[name];  
  38. }else{  
  39. return getComputedStyle(obj,false)[name];  
  40. }  
  41. };  
  42. function move(obj,iTarget,name){  
  43. clearInterval(obj.timer);  
  44. obj.timer=setInterval(function(){  
  45. var cur=parseInt(getStyle(obj,name));  
  46. var speed=(iTarget-cur)/30;  
  47. speed=speed>0?Math.ceil(speed):Math.floor(speed);  
  48. if(cur==iTarget){  
  49. clearInterval(obj.timer);  
  50. }else{  
  51. obj.style[name]=cur+speed+"px";  
  52. }  
  53. },30);  
  54. };  
  55. </script>  
  56. </head>  
  57. <body>  
  58. <div id="div1"></div>  
  59. <div id="div2"></div>  
  60. </body>  
  61. </html> 

注意事项:

1.offsetwidth所获得的并不只是物体的纯宽度,还有物体的变宽以及外边距。那么在obj.style.width=obj.offsetwidth-1+"px";这句中,本意是希望图片缩小以1px的速度匀速缩小,但是如果将边框的宽度设置为1px而非0px,那么offsetwidth的值其实是obj的width(注意:不是style.width即不是行间的width)+2,上面这句变成了obj.style.width=obj的width+2-1+“px”;图像反而增大了。解决的办法就是不用offsetwidth,而用obj的width。width通过getStyle方法获得。

2.getStyle方法得到的是string。需要用parseint强制转换成数字类型。

完整的运动框架:

 

 
  1. <!DOCTYPE html>  
  2. <html>  
  3. <head lang="en">  
  4. <meta charset="UTF-8">  
  5. <title></title>  
  6. <style> 
  7. #div1{  
  8. width: 200px;  
  9. height: 200px;  
  10. margin: 20px;  
  11. background: yellow;  
  12. border: 5px solid black;  
  13. filter: alpha(opacity:30);  
  14. opacity: 0.3;  
  15. }  
  16. </style>  
  17. <script>  
  18. window.onload=function(){  
  19. var oDiv1=document.getElementById('div1');  
  20. oDiv1.timer=null;  
  21. oDiv1.onmouseover=function(){  
  22. move(this,100,'opacity');  
  23. };  
  24. oDiv1.onmouseout=function(){  
  25. move(this,30,'opacity');  
  26. };  
  27. };  
  28. function getStyle(obj,name){  
  29. if(obj.currentStyle){  
  30. return obj.currentStyle[name];  
  31. }else{  
  32. return getComputedStyle(obj,false)[name];  
  33. }  
  34. };  
  35. function move(obj,iTarget,name){  
  36. clearInterval(obj.timer);  
  37. obj.timer=setInterval(function(){  
  38. var cur=0;  
  39. if(name=='opacity'){  
  40. cur=Math.round(parseFloat(getStyle(obj,name))*100);  
  41. }else{  
  42. cur=parseInt(getStyle(obj,name));  
  43. }  
  44. var speed=(iTarget-cur)/30;  
  45. speed=speed>0?Math.ceil(speed):Math.floor(speed);  
  46. if(cur==iTarget){  
  47. clearInterval(obj.timer);  
  48. }else{  
  49. if(name=='opacity'){  
  50. obj.style.opacity=(cur+speed)/100;  
  51. obj.style.filter='alpha(opacity:'+cur+speed+')';  
  52. }else{  
  53. obj.style[name]=cur+speed+"px";  
  54. }  
  55. }  
  56. },30);  
  57. };  
  58. </script>  
  59. </head>  
  60. <body>  
  61. <div id="div1"></div>  
  62. </body>  
  63. </html> 

希望本文所述对大家的javascript程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选