Hello,
I use Easy Slider Full Screen with MP4. Work perfectly but I have a button attached on image (legend > button) before MP4 is playing.
When MP4 is playing, this button refuse to disapear. Is there a way to hide button when video is playing?
Thank you for your help/tips.
Hey Emaginance,
Could you please give us a link to your website, we need more context to be able to help you.
Best regards,
Victoria
Hello Victoria,
Here a screenshot to understand the problem : https://ibb.co/3mSZVCW
Website is not online for now.
Thank you.
Hi Emaginance,
You will need to write JavaScript to hide the button once the video started to play.
If you need further assistance please let us know.
Best regards,
Victoria
Hello Victoria,
Have you got an example?
Thank you for response.
Hi,
Thank you for the follow up.
You can also try this css code to hide the caption when the video is playing.
.av-video-slide.av-video-playing .caption_container {
opacity: 0;
visibility: hidden;
}
Please don’t forget to toggle the Performance > File Compression settings if it’s enabled.
Best regards,
Ismael
Hi Ismael,
Thank you so much, it works.
Just for my information, is there a way to hide caption even if video is in pause, something like that :
.av-video-slide.av-video-xxxxxxx .caption_container {
opacity: 0;
visibility: hidden;
}
Thank you.