Is it possible to edit vimeo’s HTML CSS attributes? I have an autoplaying video and no need for the play button.
I’d like to edit this class.
.a.l .b .as {
position: absolute;
top: 50%;
left: 50%;
margin: -2em 0 0 -3.25em;
float: none;
z-index: 3;
}
Id would like to add a display:none; to this class.
Building on what Jonathan Sampson says. Is this possible:
$(document).ready(function() {
$("iframe#vim").contents().find('.as.av').hide();
});
The HTML5 video is currently delivered through an
iframe, so you can’t touch the button:A year ago the Vimeo staff spoke out defending their decision to not allow users to hide the play/pause button, suggesting it creates a bad user experience: http://vimeo.com/forums/topic:31015