Tagged: play button, vimeo
Hi guys,
Im using a vimeo video in fullwidth slider. I wanna show the play button, but unfortunately the play or pause button only appears when I click on the video.
If the video isn’t on autoplay, then the user doesn’t know that its a video and that he has to click on it to play it.
Can you help me out?
Best regards,
Theo
Hi Theo!
The video in your website is currently set to autoplay.
Best regards,
Josue
Lol Josue,
I know that its set to autoplay. I had no choice cause the website owner needed to see a playing video instead of the image without a play button.
I can disable the autoplay for now, but tomorrow morning it will be activated again.
So can you have a look in that time? Do I really have to disable it or can you rebuild it on a test server?
Best regards,
Theo
Hello Theo,
Kriesi will look into it and it may be added in the next update, in the meantime here’s a workaround:
1. Open js/shortcodes.js and replace its contents with this.
2. Add this to Quick CSS:
.avia_playpause_icon.av-idle {
opacity: 1 !important;
display: block !important;
pointer-events: none;
-webkit-transform: none !important;
-moz-transform: none !important;
transform: none !important;
}
.avia_playpause_icon.av-idle:before {
content: '\E897';
font-family: 'entypo-fontello';
}
.av-video-paused .avia_playpause_icon {
display: block !important;
}
Cheers!
Josue