首页 > 语言 > JavaScript > 正文

javascript实现动态改变层大小的方法

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

这篇文章主要介绍了javascript实现动态改变层大小的方法,涉及javascript操作页面属性的相关技巧,需要的朋友可以参考下

本文实例讲述了javascript实现动态改变层大小的方法。分享给大家供大家参考。具体实现方法如下:

 

 
  1. <html xmlns="http://www.w3.org/1999/xhtml"
  2. <head> 
  3. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
  4. <title>动态设置层的大小</title> 
  5. <style type="text/css"
  6. .divMain 
  7. width:10px; 
  8. height:100px; 
  9. border-style:solid; 
  10. border-width:1px; 
  11. border-color:Green; 
  12. display:none;  
  13. </style> 
  14. <script type="text/javascript"
  15. var setIntervalID; 
  16. function ZoomDiv() { 
  17. var divMain = document.getElementById("divMain"); 
  18. divMain.style.width = "200px"
  19. divMain.style.height = "200px"
  20. function ShowDiv() { 
  21. setIntervalID = setInterval("inc()", 100); 
  22. function inc() { 
  23. var divMain = document.getElementById("divMain2"); 
  24. //div不能设置class,否则使用divMain.style.width取到的值时空的 
  25. //只能在元素里设置style="width:10px;height:100px" 
  26. var oldWidth = divMain.style.width; 
  27. var oldHeight = divMain.style.height; 
  28. oldWidth = parseInt(oldWidth); 
  29. oldHeight = parseInt(oldHeight); 
  30. oldWidth += 1; 
  31. oldHeight += 1; 
  32. if (oldWidth >= 200) { 
  33. //清除定时器 
  34. clearInterval(setIntervalID); 
  35. return
  36. divMain.style.width = oldWidth + "px"
  37. divMain.style.height = oldHeight + "px"
  38. </script> 
  39. </head> 
  40. <body> 
  41. <input type="button" value="放大层" onclick="ZoomDiv()" /> 
  42. <input type="button" value="动态放大层" onclick="ShowDiv()" /> 
  43. <div id="divMain" class="divMain"
  44. 案例:跟着鼠标飞的图片。提示:鼠标移动的事件时onmousemove,通过 
  45. window.event的clientX,clientY属性获得鼠标的位置 
  46. </div> 
  47. <!--这里不能设置class,否则使用divMain.style.width取到的值时空的--> 
  48. <div id="divMain2" style="width:10px;height:100px;background-color:Red;"
  49. 案例:跟着鼠标飞的图片。提示:鼠标移动的事件时onmousemove,通过 
  50. window.event的clientX,clientY属性获得鼠标的位置 
  51. </div> 
  52. </body> 
  53. </html> 

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

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

图片精选