XenForo Animation background

wikislo

Registered
gradients or animation background images

go to your admin panel then add the following code to your extra.less

CSS:
body {
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #66FFC4 50%, #73FFFF 52%, #8CB1FF 56%);
    background-size: 200% 200%;
    animation: ani_gradient 3.6s ease infinite;
}
@keyframes ani_gradient {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

this red color changed to your speed
picture below
 

Attachments

  • Screenshot 2024-06-03 at 19-23-12 Wiki Media Forum.png
    Screenshot 2024-06-03 at 19-23-12 Wiki Media Forum.png
    146.9 KB · Views: 131
  • Screenshot 2024-06-03 at 19-23-23 Wiki Media Forum.png
    Screenshot 2024-06-03 at 19-23-23 Wiki Media Forum.png
    14.1 KB · Views: 130
Back
Top Bottom