Tagged: Accordion
Hi,
I try to disable the small delay at the loading of the accordion tabs.
Is it a way through css or through javascript?
I would appreciate your help.
Michaël
Hey Mica_Konrad,
Can you please post the link to your page and point out the changes you would like to make so we can make sure that we are on the same page?
Best regards,
Yigit
Hi Yigit,
The link was already posted in “private data”. Can you see it?
I am trying to remove the delay at the loading of the panels.
Hi,
Add this in the Quick CSS field:
#top .aviaccordion.av-animation-active .aviaccordion-slide, #top .aviaccordion-title-on-hover .aviaccordion-preview {
-webkit-transition: all 0.2s cubic-bezier(0.230, 1.000, 0.320, 1.000);
transition: all 0.2s cubic-bezier(0.230, 1.000, 0.320, 1.000);
}
The default duration is 0.7s.
Best regards,
Ismael
Hi Ismael,
It’s not that behavior that I want to modify. But the first loading delay, when the page is opened (see image below).
Do you have a solution for this?
Hi,
I see. Please use this instead:
#top .aviaccordion-slide img {
opacity: 1;
filter: alpha(opacity=100);
}
Best regards,
Ismael
thanks !