• Welcome to the Chevereto user community!

    Here users from all over the world gather around to learn the latest about Chevereto and contribute with ideas to improve the software.

    Please keep in mind:

    • 😌 This community is user driven. Be polite with other users.
    • 👉 Is required to purchase a Chevereto license to participate in this community (doesn't apply to Pre-sales).
    • 💸 Purchase a Pro Subscription to get access to active software support and faster ticket response times.

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