In this tutorial I will show you how to make floating effect using Elementor Pro.
Add this CSS Code
selector{ animation: float 6s ease-in-out infinite; } @keyframes float { 0% { transform: translatey(0px); } 50% { transform: translatex(20px) translatey(20px) rotateZ(23deg) scale(0.7); } 100% { transform: translatey(0px); } }
0 Comments