XenForo Username CSS animation

wikislo

Registered
Place your CSS inside Groups & Permissions -> User groups -> select your group "User name CSS"

CSS:
text-transform: uppercase;
overflow: hidden;
background: linear-gradient(90deg, #000000, #ffffff, #000000);
background-repeat: no-repeat;
background-size: 80%;
animation: animate 3s linear infinite;
-webkit-background-clip: text;
-webkit-text-fill-color: rgba(255, 255, 255, 0);

Place your animation inside extra.less:

CSS:
@keyframes animate {
0% {
background-position: -500%;
}
100% {
background-position: 500%;
}
}

.username--style3
 

Attachments

  • Screenshot 2024-03-31 at 01-15-58 WiKi FoRuM.png
    Screenshot 2024-03-31 at 01-15-58 WiKi FoRuM.png
    14.7 KB · Views: 38
Back
Top Bottom