首页 > 语言 > JavaScript > 正文

JavaScript实现多个重叠层点击切换效果的方法

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

这篇文章主要介绍了JavaScript实现多个重叠层点击切换效果的方法,实例分析了javascript实现点击切换效果的相关技巧,需要的朋友可以参考下

本文实例讲述了JavaScript实现多个重叠层点击切换效果的方法。分享给大家供大家参考。具体如下:

 

 
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
  3. <html xmlns="http://www.w3.org/1999/xhtml"
  4. <head> 
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
  6. <title>三个层重叠,点击可切换</title> 
  7. <script type="text/javascript"
  8. function $(obj){ 
  9. return document.getElementById(obj); 
  10. function change(n){ 
  11. for (var i=1;i<4;i++){ 
  12. if(n==i){ 
  13. $("a"+i).style.zIndex="100"
  14. }else
  15. $("a"+i).style.zIndex="0"
  16. </script> 
  17. </head> 
  18. <body> 
  19. <div id="a1" 
  20. style="position:absolute;left:100px;top:100px;width:100px;height:100px; 
  21. background-color:#ddeeff;z-index:1" onclick="change('1')" > 
  22. </div> 
  23. <div id="a2" 
  24. style="position:absolute;left:150px;top:130px;width:100px;height:100px; 
  25. background-color:#eeffdd;z-index:2" onclick="change('2')"> 
  26. </div> 
  27. <div id="a3" 
  28. style="position:absolute;left:200px;top:160px;width:100px;height:100px; 
  29. background-color:#ffddee;z-index:3" onclick="change('3')"> 
  30. </div> 
  31. <div>http://www.vevb.com/</div> 
  32. </body> 
  33. </html> 

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

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

图片精选