How can I create a rectangle to circle transition on hover in Webflow for the given design?

Published on
September 22, 2023

To create a rectangle to circle transition on hover in Webflow, you will need to use some custom CSS code. Here's a step-by-step guide:

  1. Start by creating a new element on your Webflow canvas. Set the element's width and height to your desired dimensions for the rectangle. You can do this by adjusting the element's dimensions in the Style panel.

  2. Next, give the element a class name by selecting it and navigating to the Class field in the Style panel. Enter a class name, like "rectangle-hover" for example.

  3. Now, go to the Custom Code tab in the Webflow Designer by clicking on the top-left corner of the Designer and selecting "Custom Code" in the dropdown menu.

  4. In the Custom Code tab, you will see two sections: <head> and <body>. Since we want to apply the transition on hover, we will add our custom code to the <head> section.

  5. Inside the <head> section, create a <style> tag to enclose your CSS code. Add the following code inside the style tags:

<style>.rectangle-hover {  transition: all 0.3s ease;}.rectangle-hover:hover {  border-radius: 50%;}</style>
  1. Save your changes and return to the Designer by clicking the "Publish" button in the upper-right corner of the Designer.

Now, when you hover over the element with the class "rectangle-hover", it will smoothly transition from a rectangle to a circle shape. Feel free to adjust the transition duration or any other CSS properties to fit your design needs.

Additional Tips:

  • You can customize the CSS code to add additional hover effects or modify the transition timing function.
  • To apply this transition to multiple elements, simply give them the same class name ("rectangle-hover" in this example).

With this guide, you should now be able to create a rectangle to circle transition on hover in Webflow!

Example question keywords:

  • How to create a rectangle to circle transition in Webflow?
  • Webflow hover transition from rectangle to circle?
  • Creating a circle transition on hover in Webflow.