首页 > 语言 > JavaScript > 正文

Javascript实现div层渐隐效果的方法

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

这篇文章主要介绍了Javascript实现div层渐隐效果的方法,涉及javascript操作页面元素与样式变化的相关技巧,需要的朋友可以参考下

本文实例讲述了Javascript实现div层渐隐效果的方法。分享给大家供大家参考。具体实现方法如下:

 

 
  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>Test Alpha</title> 
  7. <style type="text/css"
  8. #show { 
  9. background:#ffff66; 
  10. font-size:12px; 
  11. height:200px; 
  12. width:300px; 
  13. left:300px; 
  14. position:absolute; 
  15. text-align:center; 
  16. filter:alpha(opacity=0); 
  17. </style> 
  18. </head> 
  19. <body onload={document.getElementById('show').style.opacity=0;}> 
  20. <div id="show"></div> 
  21. <button onclick=fun()>button</button> 
  22. </body> 
  23. <script> 
  24. function fun(){ 
  25. var div=document.getElementById('show'); 
  26. div.style.opacity=1; 
  27. hidden(document.getElementById("show"),1,-0.01); 
  28. function hidden(o,i,s){ 
  29. t=setInterval(function(){  
  30. i+=s; 
  31. o.style.opacity=i; 
  32. if(i<0)window.clearInterval(t);  
  33. },1);  
  34. }; 
  35. </script> 
  36. </html> 

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

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

图片精选