How to create an animated hovering effect in Elementor

Elementor 3.17 Update Broke My Forms — Here’s the Fix

Everything looks fine for about twelve seconds. Then the contact forms stop submitting. No error message. No console warning. Just… ...

Read More

My WordPress Site Got Hacked (Not My Fault — wp2shell Did It)

Someone just exploited a hole in WordPress core that lets them take over your server without logging in. Here's what ...

Read More

Elementor Update Just Broke My Site — Here’s How I Sorted It

Updated Elementor and your site broke? I walk through the actual fixes that worked when it happened to a client ...

Read More

How To Make A Vertical 3D Gallery Slider

So if you follow along in the video, I refer to this blog post for you to enter code at ...

Read More
Showing Slide 1 of 5

So if you follow along in the video, I refer to this blog post for you to enter code at certain points, so below is everything you will need!

The Following are the css class names I used in the tutorial:

				
					feast-movement-up

feast-movement-down

feast-movement-left

feast-movement-right
				
			

The Following code goes into the HMTL widget:

				
					<style>
    .feast-movement-up {
  animation: floatup 3s ease-in-out infinite;
  display: inline-block; /* Ensures proper alignment */
}

@keyframes floatup {
  0%, 100% {
    transform: translateY(0); /* Starting and ending position */
  }
  50% {
    transform: translateY(-15px); /* Move up slightly */
  }
}
</style>


<style>
    .feast-movement-down {
  animation: floatdown 5s ease-in-out infinite;
  display: inline-block; /* Ensures proper alignment */
}

@keyframes floatdown {
  0%, 100% {
    transform: translateY(0); /* Starting and ending position */
  }
  50% {
    transform: translateY(15px); /* Move down slightly */
  }
}
</style>


<style>
    .feast-movement-left {
  animation: floatleft 5s ease-in-out infinite;
  display: inline-block; /* Ensures proper alignment */
}

@keyframes floatleft {
  0%, 100% {
    transform: translateX(0); /* Starting and ending position */
  }
  50% {
    transform: translateX(-20px); /* Move left slightly */
  }
}
</style>


<style>
    .feast-movement-right {
  animation: floatright 5s ease-in-out infinite;
  display: inline-block; /* Ensures proper alignment */
}

@keyframes floatright {
  0%, 100% {
    transform: translateX(0); /* Starting and ending position */
  }
  50% {
    transform: translateX(20px); /* Move right slightly */
  }
}
</style>