Jquery vimeo html5编辑CSS

Jquery vimeo html5编辑CSS,jquery,css,html,vimeo,Jquery,Css,Html,Vimeo,是否可以编辑vimeo的HTML CSS属性?我有一个自动播放视频,不需要播放按钮 我想编辑这个类 .a.l .b .as { position: absolute; top: 50%; left: 50%; margin: -2em 0 0 -3.25em; float: none; z-index: 3; } Id要添加显示:无到这个类 .a.l .b .as { position: absolute; top: 50%; left: 50%; margin: -2em 0 0 -3.25

是否可以编辑vimeo的HTML CSS属性?我有一个自动播放视频,不需要播放按钮

我想编辑这个类

.a.l .b .as {
position: absolute;
top: 50%;
left: 50%;
margin: -2em 0 0 -3.25em;
float: none;
z-index: 3;
}

Id要添加
显示:无到这个类

.a.l .b .as {
position: absolute;
top: 50%;
left: 50%;
margin: -2em 0 0 -3.25em;
float: none;
z-index: 3;
以乔纳森·桑普森的话为基础。这是否可能:

    $(document).ready(function() {
       $("iframe#vim").contents().find('.as.av').hide();
});

HTML5视频当前通过
iframe
传送,因此您不能点击按钮:

<iframe src="http://player.vimeo.com/video/7403673" 
        width="500" height="281" frameborder="0" 
        webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>


一年前,Vimeo的工作人员为他们不允许用户隐藏播放/暂停按钮的决定进行了辩护,建议这会造成糟糕的用户体验:

@uriah不,除非
iframe
是从您的域加载的-Vimeo视频并非如此。感谢您的建议和链接。