Wondering if it's feasible to animate flex elements upwards when scrolled?
Attempting to replicate this effect: https://codepen.io/Sergiop79/pen/bxjGEe
I want to apply this to the elements below (styled in flexbox), either the entire "row" or each individual "col".
Haven't come across any resources specifically addressing this for Flexbox, so just curious if it's doable. Thanks!
<about id="about" class="row">
<div class="col">
<div class="about1">
<img src="1-AB.svg">
</div>
<div class="about1a">
<h3>About</h3>
<p>Now that we know who you are, I know who I am. I'm not a mistake! It all makes sense! In a comic, you know how you can tell who the arch-villain's going to be? He's the exact opposite of the hero.</p>
</div>
</div>
<div class="col">
<div class="about2">
<img src="2-AB.svg">
</div>
<div class="about2a">
<h3>Aboot</h3>
<p>Now that we know who you are, I know who I am. I'm not a mistake! It all makes sense! In a comic, you know how you can tell who the arch-villain's going to be? He's the exact opposite of the hero.</p>
</div>
</div>
<div class="col">
<div class="about3">
<img src="3-AB.svg">
</div>
<div class="about3a">
<h3>Abute</h3>
<p>Now that we know who you are, I know who I am. I'm not a mistake! It all makes sense! In a comic, you know how you can tell who the arch-villain's going to be? He's the exact opposite of the hero.</p>
</div>
</div>
</about>