• Welcome to the Chevereto User Community!

    Here, users from all over the world come together to learn, share, and collaborate on everything related to Chevereto. It's a place to exchange ideas, ask questions, and help improve the software.

    Please keep in mind:

    • This community is user-driven. Always be polite and respectful to others.
    • Support development by purchasing a Chevereto license, which also gives you priority support.
    • Go further by joining the Community Subscription for even faster response times and to help sustain this space

Disable Main page Animation..

neoark

Chevereto Member
Hello,

I am trying to increase load time for the site. Is there a way to disable animation on the main page. It just adds a delay when loading the website on the slow internet.

Thanks
 
Is active but the animation doesn't affect the load time. Load time is affected by how many elements you load into the page, not animations.
 
For anyone else that might want to disable animation, here's a hacky way to do it, but it works.

In app/themes/Peafowl/style.css:

(Around line 1232)
.home-cover-img {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-size: cover; <-- remove this line completely or comment it out with /* code */
background-repeat: no-repeat;
background-position: center center;
display: block;
opacity: 0;
-webkit-transform: translateZ(0);
backface-visibility: hidden;
}

(Around line 1257)
.home-cover-img.animate-end {
opacity: 1;
transform: scale(1.12); <--- change to (1)
animation: none;
}

@keyframes slideshow {
0% {
opacity: 0;
}
20% {
opacity: 1;
}
100% {
opacity: 1;
transform: scale(1.12); <--- change to (1)
}
}
@keyframes slideshow--alt {
100% {
transform: scale(1.12); <--- change to (1)
}
}
 
For anyone else that might want to disable animation, here's a hacky way to do it, but it works.

instead of editing files, just use this as custom css. worked fine for me 🙂

Code:
.home-cover-img.animate-end {
transform: scale(1);
}
@keyframes slideshow {
0% {
opacity: 0;
}
20% {
opacity: 1;
}
100% {
opacity: 1;
transform: scale(1);
}
}
@keyframes slideshow--alt {
100% {
transform: scale(1);
}
}
 
Last edited:
Back
Top