我试图在我的关于我们页面中显示我的推荐。在那里,我使用 3divs
和水平样式来一次显示 3 个推荐。
在这里,我想要做的是我想添加一些带有查询的滑动效果以消失 1st 3 divs
,然后需要加载 2nd 3divs
和不同的推荐。等等..我做了HTML和CSS ..但不知道如何用查询来做......任何人都可以帮助我做到这一点..???
<div class="testimonials">
<div class="cols">
contents...1st time
</div>
<div class="cols">
contents...1st time
</div>
<div class="cols">
contents...1st time
</div>
<div class="cols">
contents...2st time
</div>
<div class="cols">
contents...2st time
</div>
<div class="cols">
contents...2st time
</div>
</div>
.testimonials {
width: 640px;
height: 300px;
//background: red;
}
.cols {
width: 150px;
height: 200px;
margin: 0 20px 0 0;
background: gray;
float: left;
}
任何意见,任何想法都非常感谢...
谢谢你..