Can we hide only the options like title,logo, like and watch on the Vimeo video except play/pause? Tried with css/javascript but couldn't hide the options on the video as the video is inside an iframe.
Tried with background="true" but all the player toggles and element are turned off (including the play/pause button)
Is there any API which can be used to hide the options on the vimeo video? Can this be achieved using Javascipt/Java?
Can we hide only the options like title,logo, like and watch on the Vimeo video except play/pause? Tried with css/javascript but couldn't hide the options on the video as the video is inside an iframe.
Tried with background="true" but all the player toggles and element are turned off (including the play/pause button)
Is there any API which can be used to hide the options on the vimeo video? Can this be achieved using Javascipt/Java?
Share edited Jul 31, 2018 at 11:26 Divya asked Jul 31, 2018 at 10:05 DivyaDivya 891 gold badge3 silver badges12 bronze badges 2- hi, please add some example showing what you have done so far, and where it fails – Leviand Commented Jul 31, 2018 at 10:06
- 1 help.vimeo./hc/en-us/articles/… – C3roe Commented Jul 31, 2018 at 10:14
2 Answers
Reset to default 3Your immediate question states: Can we hide only the options like title,logo, like and watch on the Vimeo video except play/pause?
Title, byline and portrait can be hidden by adding those parameters onto the URL or in the options when initializing the player. All the options can be seen here in the Vimeo player repo. For example:
<iframe src="https://player.vimeo./video/76979871?byline=0&portrait=0&title=0" width="640" height="360" frameborder="0" allowfullscreen></iframe>
Or by modifying this example with the right options :
var options = {
id: 59777392,
width: 640,
byline: false,
portrait: false,
title: false
};
It is CRITICAL to note that these will only work if the videos owner allowed for this in their Video settings page by selecting the Let Users Decide
option in the "Your Details" section of the settings page.
The Logo, watch later, and like buttons can only be turned off in the settings page by the video owner as well.
Click on Share this video
will open a modal window
here u can click on show options
which is next to Embed, there u can find few option checkbox to hide title, logo
and other things of the vimeo video.