[FIXED] How to use interactions for entrance animations that don't show the element on page-load

I experienced the same issue and used the CSS below to resolve the issue.

[data-interactions] {
  visibility: hidden;
}
[data-interactions].brx-animated {
  visibility: visible;
}
3 Likes