javascript - Hide options in Vimeo video - Stack Overflow

Can we hide only the options like title,logo, like and watch on the Vimeo video except playpause?Trie

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
Add a ment  | 

2 Answers 2

Reset to default 3

Your 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.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1744815937a4595326.html

相关推荐

  • javascript - Hide options in Vimeo video - Stack Overflow

    Can we hide only the options like title,logo, like and watch on the Vimeo video except playpause?Trie

    2天前
    30

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信