更改输入范围颜色,如在youtube上

时间:2017-01-26 12:07:46

标签: jquery html css youtube youtube-api

我正在使用Youtube API而我正在尝试为yotube播放器使用costum输入范围。我想做this之类的事情。我想用黄色做这个。

<div class="range-video col-xs-6">
  <input type="range" id="progress-bar" value="0" />
</div>

1 个答案:

答案 0 :(得分:-1)

使用API​​指定进度条的颜色时,根据document

  

此参数指定将在播放器的视频进度条中使用的颜色,以突出显示观看者已经看过的视频量。 有效参数值为红色和白色,默认情况下,播放器在视频进度条中使用红色。有关颜色选项的详细信息,请参阅YouTube API blog

<iframe width="560" height="349"
  src="http://www.youtube.com/embed/9h1swNWgP8Q?theme=light&color=red"
  frameborder="0" allowfullscreen></iframe>

截至目前,进度条的有效颜色仅为白色和红色。

我希望这会有所帮助。