Logo Pulse

Status
This thread has been locked.

BorisPlaysMC

Feedback score
1
Posts
5
Reactions
1
Resources
0
Hello, I wanted to know how to make my logo have a pulse. I've tried using this "<img class="animated pulse infinite" src="/styles/logo.png">" in the extra.less template via XenForo v2.0.10, but that didn't work.

Any suggestions?
 
PebbleHost
High performance, consistent uptime and fast support. Minecraft hosting that just works.

Norska

Java Developer (https://norska.dev)
Supreme
Feedback score
68
Posts
901
Reactions
1,407
Resources
14
Add this in css and it should work
Code:
-webkit-animation: breathing 7s ease-out infinite normal;
animation: breathing 7s ease-out infinite normal;
 

BorisPlaysMC

Feedback score
1
Posts
5
Reactions
1
Resources
0
So I would put that code in the extra.less?
(Sorry i'm new at this, and setting up my own theme with UI.X 2 was a journey of its own)

Add this in css and it should work
Code:
-webkit-animation: breathing 7s ease-out infinite normal;
animation: breathing 7s ease-out infinite normal;
 

Kuchy

Web Developing Cake
Support
Feedback score
14
Posts
664
Reactions
505
Resources
2
Well you'll need to have that animation created, either self made or from a pre-made css library like animate.css

You can't just add the class and expect that to pulse automatically without the certain criteria. Look at keyframes on w3schools or animate.css if you're wanting pre-made
 
Status
This thread has been locked.
Top