Animate Xenforo Logo

Status
This thread has been locked.

Ender

HQ Setup Specialist
Supreme
Feedback score
2
Posts
263
Reactions
43
Resources
0
I am trying to add the pulse to the logo in xenforo using the animate.css! Kind of clueless but trying to piece things together! Here is what I have in my EXTRA.less

I am using UiX2 and its Xenforo 2.1.0

#logoBlock
{
-webkit-animation: breathing 7s ease-out infinite normal;
animation: breathing 7s ease-out infinite normal;
}
 
PebbleHost
High performance, consistent uptime and fast support. Minecraft hosting that just works.

Areeb

Supreme
Feedback score
41
Posts
1,251
Reactions
442
Resources
0
Add this in extra.less,

Code:
#logoBlock
    {
        -webkit-animation-name: scalex;
        -webkit-animation-duration:3s;
        -webkit-animation-iteration-count:infinite;
        -webkit-animation-timing-function:ease-in-out;
        -moz-animation-name: scale;
        -moz-animation-duration:3s;
        -moz-animation-iteration-count:infinite;
        -moz-animation-timing-function:ease-in-out;
}
   
    @-webkit-keyframes scalex{
        from {-webkit-transform: scale(0.9);}
        65% {-webkit-transform: scale(1.0);}
        to {-webkit-transform: scale(0.9);}  
    }
       
    @-moz-keyframes scale{
        from {-moz-transform: scale(0.9);}
        65% {-moz-transform: scale(1.0);}
        to {-moz-transform: scale(0.9);}  
    }
       
    }
 

Ender

HQ Setup Specialist
Supreme
Feedback score
2
Posts
263
Reactions
43
Resources
0
Add this in extra.less,

Code:
#logoBlock
    {
        -webkit-animation-name: scalex;
        -webkit-animation-duration:3s;
        -webkit-animation-iteration-count:infinite;
        -webkit-animation-timing-function:ease-in-out;
        -moz-animation-name: scale;
        -moz-animation-duration:3s;
        -moz-animation-iteration-count:infinite;
        -moz-animation-timing-function:ease-in-out;
}
  
    @-webkit-keyframes scalex{
        from {-webkit-transform: scale(0.9);}
        65% {-webkit-transform: scale(1.0);}
        to {-webkit-transform: scale(0.9);} 
    }
      
    @-moz-keyframes scale{
        from {-moz-transform: scale(0.9);}
        65% {-moz-transform: scale(1.0);}
        to {-moz-transform: scale(0.9);} 
    }
      
    }
Do I need the logo to be uploaded to the file manager because I am just using a link atm
 

Ender

HQ Setup Specialist
Supreme
Feedback score
2
Posts
263
Reactions
43
Resources
0

Kuchy

Web Developing Cake
Support
Feedback score
14
Posts
664
Reactions
505
Resources
2
1) breathing isn't an animation name on animate.css
2) If you're using animate.css, why didn't you just add the classes animated pulse to the logoBlock html tag and to loop it, add infinite to that class list. Should accomplish what you want.

Hope it works!
 

Ender

HQ Setup Specialist
Supreme
Feedback score
2
Posts
263
Reactions
43
Resources
0
1) breathing isn't an animation name on animate.css
2) If you're using animate.css, why didn't you just add the classes animated pulse to the logoBlock html tag and to loop it, add infinite to that class list. Should accomplish what you want.

Hope it works!
whats the logo block html XD
 

Ender

HQ Setup Specialist
Supreme
Feedback score
2
Posts
263
Reactions
43
Resources
0
I'm on phone so I can't see your classes sorry. If it's not fixed by the time I wake up, I'll help you.
Any luck cause I am still lost XD
 
Status
This thread has been locked.
Top