Do you want code or template?
1. Get Strema Elementor Template
2. CSS code used in video
Step 1:
.image1 {
border-radius: 10px;
box-shadow: 0px 0px 10px 0px rgba(214.99999999999997, 238.99999999999997, 66.99999999999997, 0.17);
animation: looping 15s infinite linear;
}
#column1 {
width: 200px;
height: 700px;
max-height: 700px;
overflow: hidden;
-webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), black 20%, black 80%, rgba(0, 0, 0, 0));
mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), black 20%, black 80%, rgba(0, 0, 0, 0));
}
@keyframes looping {
0% {
transform: translateY(0);
}
100% {
transform: translateY(-100%);
}
}
Step 2:
.image2 {
border-radius: 10px;
box-shadow: 0px 0px 10px 0px rgba(214.99999999999997, 238.99999999999997, 66.99999999999997, 0.17);
animation: looping 16s linear 0s infinite none reverse;
animation-direction: reverse;
}
#column2 {
max-height: 700px;
height: 700px;
width: 200px;
-webkit-mask-image: linear-gradient(transparent, black 20%, black 80%, transparent 100%);
mask-image: linear-gradient(transparent, black 20%, black 80%, transparent 100%);
}
@keyframes looping{
0% {
transform: translateY(0px);
}
100% {
transform: translateY(-100%);
}
}
Step 3:
.image3 {
border-radius: 10px;
box-shadow: 0px 0px 10px 0px rgba(214.99999999999997, 238.99999999999997, 66.99999999999997, 0.17);
animation: looping 20s linear 0s infinite none;
}
#column3 {
max-height: 700px;
height: 700px;
width: 200px;
-webkit-mask-image: linear-gradient(transparent, black 20%, black 80%, transparent 100%);
mask-image: linear-gradient(transparent, black 20%, black 80%, transparent 100%);
}
@keyframes looping{
0% {
transform: translateY(0px);
}
100% {
transform: translateY(-100%);
}
}
Make it responsive (add to entire page custom css):
@media only screen and (max-width: 360px) {
#column1, #column2, #column3 {
width: 100px;
height: 350px;
max-height: 350px;
}
}
3. Extra + Download images:
Background color code: #0F0F1C
Yellow color code: #D7EF43
Want more GSAP tutorials?
Want more GSAP blog post?
Elementor free
Create a Wave Hover Effect in Your Elementor Gallery with Elementor Free
Are you looking to add a creative touch to your Elementor gallery using only the free version of Elementor? In this tutorial, I’ll show you
10/04/2024
Elementor free
Mastering a Rotating Video Gallery with Elementor and GSAP ScrollTrigger
Are you ready to elevate your web design skills and impress your visitors with stunning animations? In my latest video, I demonstrate how to create
09/02/2024