• I want to play only the background image. However, the box in the middle is also animated.
• I will provide the link to the video section that demonstrates how I want to animate that section.
Video link: https://drive.google.com/file/d/10MWfj4GRGLZ1QjOQERkR-behEk1Q6hWl/view?usp=sharing
Website link: https://test3.prestigegemsstore.com/
This is the animation code.
.pim {
animation: scale 30s linear infinite;
}
@keyframes scale {
50% {
-webkit-transform: scale(1.2);
-moz-transform: scale(1.2);
-ms-transform: scale(1.2);
-o-transform: scale(1.2);
transform: scale(1.2);
}
}