Hello,
I’m working with a fullscreen slider and a video embedded from Vimeo and I’m trying to figure out how to do 1 of 2 things:
Option 1) Disable autoplay of the video AND have video controls visible on the slide so that the viewer realizes it is a video that they can play. When I select “disable autoplay” the video slide displays the vimeo thumbnail exactly like a still image slide with no video controls and no indication that the slide is in fact a video – unless the viewer happens to click on the slide. I have tried modifying the css for .avia_playpause_icon and setting it to always display. This works, but if the viewer clicks on the play button it does not do anything. (It sounds like self-hosted videos and youtube videos do display video controls on the video slide, but I need this functionality for a vimeo video.)
Option 2) Autoplay and mute the video, but provide an option for the viewer to unmute the video. I have not fond any way of enabling this functionality yet with a vimeo embedded video.
Thanks so much for your help!
Spencer
Hey Spencer!
Try adding this code to the Quick CSS:
#top .avia-fullscreen-slider .av-video-slide.av-video-service-vimeo iframe {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
Cheers!
Josue