Best Way to Add Animations in WordPress Without Plugins

Copy CSS Hoose ⬇️

selector { animation: floatUpDown 4s ease-in-out infinite; } @keyframes floatUpDown { 0% { transform: translateY(0); } 50% { transform: translateY(-15px); /* move up */ } 100% { transform: translateY(0); } }

Leave a Reply

Your email address will not be published. Required fields are marked *