我正在玩jquery。我想要做的是点击"立即隐藏我"按钮,以便div
元素一个接一个地淡出。我怎么做?我在这里弄到了一个小提琴:https://jsfiddle.net/um7ctpnj/1/
<!doctype html>
<head>
<title>Button Show</title>
<link rel="stylesheet" href="stylesheet.css">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>
<button id="show" type="button" class="btn btn-primary">Click Me!</button>
<button id="hide" type="button" class="btn btn-primary">Hide Me Now!</button>
<div id="one">1</div>
<div id="two">2</div>
<div id="three">3</div>
<script src="javascript.js"></script>
</body>
</html>
$(document).ready(function (){
$('#show').click(function(){
$( "div:hidden:first" ).fadeIn( "slow" );
});
$('#hide').click(function(){
$( "div" ).fadeOut("fast");
});
});
div {
margin: 3px;
width: 80px;
display: none;
height: 80px;
float: left;
}
#one {
background: #f00;
}
#two {
background: #0f0;
}
#three {
background: #00f;
}
答案 0 :(得分:3)
您可以使用像
这样的反向过滤器
$(document).ready(function() {
$('#show').click(function() {
$("div").stop(true, true).filter(":hidden:first").fadeIn("slow");
});
$('#hide').click(function() {
$("div").stop(true, true).filter(":visible:last").fadeOut("slow");
});
});
&#13;
div {
margin: 3px;
width: 80px;
display: none;
height: 80px;
float: left;
}
#one {
background: #f00;
}
#two {
background: #0f0;
}
#three {
background: #00f;
}
&#13;
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<button id="show" type="button" class="btn btn-primary">Click Me!</button>
<button id="hide" type="button" class="btn btn-primary">Hide Me Now!</button>
<div id="one">1</div>
<div id="two">2</div>
<div id="three">3</div>
&#13;
答案 1 :(得分:2)
$('#hide').click(function(){
$( "div" ).fadeOut("fast");
});
由于使用div
选择器而不是使用div:visible:last
逐个隐藏,因此所有div淡出。
$('#hide').click(function(){
$( "div:visible:last" ).fadeOut("fast");
});
检查工作fiddle
答案 2 :(得分:0)
$('#hide').click(function () {
$divHandle = $('.box');
timer = setInterval(function () {
if ($divHandle[divCount]) {
$($divHandle[divCount++]).fadeOut("fast");
} else {
clearInterval(timer);
}
}, CONST_TIME)
});
请在这个小提琴中找到所需的实现