Мне нужна помощь для анимации карт в начальной загрузке 4.
У меня есть 4 коробки с картами, как показано на рисунке ниже, это простая колода из четырех карт для начальной загрузки.
Я пытаюсь сдвинуть каждое поле по одному справа, когда пользователь прокручивает этот раздел. как этого добиться?
Я не пытаюсь сделать слайдер / карусель.
Для справки проверьте это codepen
4 коробки каждая должна быть справа.
В коде над всем приходит сразу и слева.
Мне нужно это справа и по одному, когда пользователь прокручивает раздел.
Вот код карты Boostrap 4, которую я использую
<!-- Card Row starts here -->
<div class="card-deck ">
<div class="card card-detail card-text1">
<img class="card-img-top img-fluid" src="images/Analytics.png" alt="Card image cap">
<div class="card-body">
<h5 class="card-title text-center">Analytics</h5>
<p class="card-text text-center text-justify ">Our amazing tracking platform allows you to view in-depth analytics for your traffic as well as our dashboard provides proprietary reporting with actionable statistics to analyze and optimize your results in real-time. Every click gets counted.</p>
</div>
</div>
<div class="card card-detail card-text1 ">
<img class="card-img-top img-fluid" src="images/Offer-Well.png" alt="Card image cap">
<div class="card-body">
<h5 class="card-title text-center">Offer Well</h5>
<p class="card-text text-center text-justify">Our OfferWall gives your users the most options to earn in one location. You can deploy a complete rewards-based monetization solution on your site in minutes as it's quite easy and simple.</p>
</div>
</div>
<div class="card card-detail card-text1 ">
<img class="card-img-top img-fluid" src="images/Inventory.png" alt="Card image cap">
<div class="card-body">
<h5 class="card-title text-center">Inventory</h5>
<p class="card-text text-center text-justify ">With over 2,000 active campaigns in our system, our algorithms will find the best converting ones for your placement. Your users have the power to easily earn by watching videos, downloading apps, taking short surveys, and completing other quick offers. </p>
</div>
</div>
<div class="card card-detail card-text1">
<img class="card-img-top img-fluid" src="images/Support.png" alt="Card image cap">
<div class="card-body">
<h5 class="card-title text-center">Support</h5>
<p class="card-text text-center text-justify">Each publisher is assigned a dedicated account manager that can help you with integration as well as in every aspects. Moreover, your user can contact us if they're running with issues.</p>
</div>
</div>
</div>
<!-- Card Row Ends here -->