jquery显示/隐藏

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="https://cdn.staticfile.org/jquery/1.10.2/jquery.min.js">
</script>
<script>
$(document).ready(function(){
  $("#btn1").click(function(){
      if( $("#div1").css('display') === "none") {
            $("#div1").fadeIn();
            $("#div2").fadeIn("slow");
            $("#div3").fadeIn(1000);
      } else {
              $("#div1").hide();
            $("#div2").hide("slow");
            $("#div3").hide(1000);
      }
  });
$("#btn2").click(function(){
        $("#div1").toggle();
        $("#div2").toggle("slow");
        $("#div3").toggle(1000);
  });
$("#btn3").click(function(){
        if( $("#div1").css('display') === "none") {
            $("#div1").show();
            $("#div2").show("slow");
            $("#div3").show(1000);
      } else {
              $("#div1").hide();
            $("#div2").hide("slow");
            $("#div3").hide(1000);
      }
  });
});
</script>
</head>

<body>
<p>以下实例演示了 fadeIn() 使用了不同参数的效果。</p>
<button id = "btn1">点击淡入淡出 div 元素。</button>
<button id = "btn2">显示/隐藏</button>
<button id = "btn3">显示/隐藏</button>
<br><br>
<div id="div1" style="width:80px;height:80px;display:none;background-color:red;"></div><br>
<div id="div2" style="width:80px;height:80px;display:none;background-color:green;"></div><br>
<div id="div3" style="width:80px;height:80px;display:none;background-color:blue;"></div>

</body>
</html>

 

上一篇:python返回链表中点


下一篇:leetcode 287 寻找重复数 类似环形链表