【发布时间】:2017-03-24 01:13:10
【问题描述】:
Tim Robert-Fitzgerald 在Codepen 上找到了一种非常干净简单的方法,可以使用过滤器切换 div 的可见性,它在我的网站上效果很好,但是我需要根据我的需要稍微扩展它。
默认情况下,我有一个删除第二个 div 的边框的 nth-child 设置,但是当切换 div 时,这不会重新应用于第二个 div。实际上它仍然被应用,但这是不可见的,因为 div 设置为 display:none;
请在切换 div 后让第 n 个孩子重新计算?
var $btns = $('.btn').click(function() {
if (this.id == 'all') {
$('#parent > div').fadeIn(450);
} else {
var $el = $('.' + this.id).fadeIn(450);
$('#parent > div').not($el).hide();
}
$btns.removeClass('active');
$(this).addClass('active');
})
* {
box-sizing: border-box;
}
body {
padding: 10px;
background: #ecf0f1;
font-family: helvetica, sans-serif;
font-weight: 200;
}
.btn {
border: none;
background: linear-gradient(to bottom, #3498db, #2980b9);
border-radius: 3px;
font-family: Arial;
color: #ffffff;
padding: 5px 10px 5px 10px;
text-decoration: none;
margin: 5px;
}
.active {
background: linear-gradient(to bottom, #3cb0fd, #3498db);
text-decoration: none;
}
.box {
background:#2980b9;
padding: 10px;
height: 100px;
width: calc(33% - 10px);
float: left;
margin: 5px;
text-align: center;
border-radius: 3px;
color: #fff;
border:4px solid #000;
}
.box:nth-child(2) {
border:none;
}
.spacer {
clear: both;
height: 20px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<button class="active btn" id="all">Show All</button>
<button class="btn" id="a">Show A</button>
<button class="btn" id="b">Show B</button>
<button class="btn" id="c">Show C</button>
<button class="btn" id="d">Show D</button>
<div class="spacer"></div>
<div id="parent">
<div class="box a b">A & B</div>
<div class="box a">A</div>
<div class="box b">B</div>
<div class="box c">C</div>
<div class="box d">D</div>
</div>
【问题讨论】:
-
很遗憾,不能用 CSS 完成。您需要像答案中那样合并一个 JS 解决方案。
标签: javascript jquery css css-selectors