Animations: pulsating background

I’m evaluating the opportunity to migrate an existing site to Webflow and I need to configure a pulsating background for an h3 element. These are the @keyframes:

@keyframes pulse {
  0% { background-color: #FF4136; }
  50% { background-color: #000000; }
  100% { background-color: #FF4136; }
}

The animation should be playing infinitely as long as the element is in the viewport.

Is this possible with Webflow?

Thanks.

hi @raul welcome to the community! :slight_smile:

You can add in your own custom CSS in the custom code area:

hope this helps :slight_smile:

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.