美文网首页互联网科技让前端飞网页前端后台技巧(CSS+HTML)
前端JavaScript-控制元素简单的淡入淡出效果

前端JavaScript-控制元素简单的淡入淡出效果

作者: 560b7bb7b879 | 来源:发表于2019-05-15 22:12 被阅读3次

使用原生JavaScript实现淡入淡出功能。

代码实例如下:

<!DOCTYPE html> 
<html> 
<head> 
<meta charset=" utf-8"> 
<meta name="author" content="http://www.softwhy.com/" /> 
<title>js代码控制元素简单的淡入淡出效果</title>
<style type="text/css">
*{
  margin:0;
  padding:0
}
body{
  font:12px Verdana, Arial;
  color:#777;
  background:#222
}
a{
  color:#999;
  text-decoration:none
}
a:hover{color:#bbb}
#wrapper{
  width:500px;
  margin:75px auto
}
#buttons{height:35px}
.button{
  border:1px solid #eee;
  background:#ccc;
  border-radius:3px;
  -moz-border-radius:3px;
  padding:4px 0 5px;
  width:245px;
  text-align:center;
  cursor:pointer;
  float:left;
  color:#555
}
.button:hover{
  border:1px solid #fff;
  background:#d9d9d9;
  color:#333
}
.floatright{float:right}
#fade{
  opacity:0;
  filter:alpha(opacity='0') border-radius:3px;
  -moz-border-radius:3px;
  margin-bottom:10px;
  padding:9px 10px 0;
  height:26px;
  border:1px solid #548954;
  background:#355c33;
  color:#79af72;
  text-shadow:1px 1px #21341d
}
</style>
<script type="text/javascript">
var fadeEffect=function(){
  return{
    init:function(id, flag, target){
      this.elem = document.getElementById(id);
      clearInterval(this.elem.si);
      this.target = target ? target : flag ? 100 : 0;
      this.flag = flag || -1;
      this.alpha = this.elem.style.opacity ? parseFloat(this.elem.style.opacity) * 100 : 0;
      this.si = setInterval(function(){fadeEffect.tween()}, 20);
    },
    tween:function(){
      if(this.alpha == this.target){
        clearInterval(this.si);
      }
     else{
       var value = Math.round(this.alpha + ((this.target - this.alpha) * .05)) + (1 * this.flag);
       this.elem.style.opacity = value / 100;
       this.elem.style.filter = 'alpha(opacity=' + value + ')';
       this.alpha = value
    }
  }
}
}();
window.onload=function(){
  var fadein=document.getElementById("fadein");
  var fadeout=document.getElementById("fadeout");
    
  fadein.onclick=function(){fadeEffect.init('fade', 1)}
  fadeout.onclick=function(){fadeEffect.init('fade', 0)}
}
</script>
</head>
<body>
<div id="wrapper">
  <div id="fade">web前端学习交流扣qun:731771211   志同道合者进!</div>
  <div id="buttons">
    <div class="button" id="fadein">点击淡入</div>
    <div class="button floatright" id="fadeout">点击淡出</div>
  </div>
</div>
</body>
</html>

相关文章

网友评论

    本文标题:前端JavaScript-控制元素简单的淡入淡出效果

    本文链接:https://www.haomeiwen.com/subject/okxvaqtx.html