.wrap {
position: relative;
margin-top: 50px;
padding: 20%;
}
.card {
position: absolute;
top: 0;
left: 0;
width: 300px;
height: 80px;
background: #00d6d6;
}
.card-first{
top: -30px;
left: 20px;
background: red;
}
<div class="wrap">
<div class="card">
Текст отзыва1
</div>
<div class="card">
Текст отзыва2
</div>
<div class="card card-first">
Текст отзыва3
</div>
<div class="card">
Текст отзыва4
</div>
</div>

如果块的数量是可变的,那么您需要尝试延迟和动画持续时间。
该代码不是最好的,但它可以工作。动画的地方,1s内进行过渡,间隔在JS中设置
我建议你使用Animate.css和wow.js
使用示例:
最终,自定义块将顺利滑出屏幕的底部边缘。