jq 切换功能toggle
Posted liaohongwei
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jq 切换功能toggle相关的知识,希望对你有一定的参考价值。
---恢复内容开始---
<!DOCTYPE html>
<html>
<head>
<script src="/jquery/jquery-1.11.1.min.js"></script>
<script>
$(document).ready(function(){
$("button").click(function(){
$("#div1").fadeTo("slow",0.15);//透明度
$("#div2").fadeTo("slow",0.4);
$("#div3").fadeTo("slow",0.7);
});
});
</script>
</head>
<body>
<p>演示带有不同参数的 fadeTo() 方法。</p>
<button>点击这里,使三个矩形淡出</button>
<br><br>
<div id="div1" style="width:80px;height:80px;background-color:red;"></div>
<br>
<div id="div2" style="width:80px;height:80px;background-color:green;"></div>
<br>
<div id="div3" style="width:80px;height:80px;background-color:blue;"></div>
</body>
</html>
---恢复内容结束---
以上是关于jq 切换功能toggle的主要内容,如果未能解决你的问题,请参考以下文章