html, body {
margin: 0;
padding: 0;
}
.half-wrapper {
position: absolute;
width: 50%;
&.left {
left: 0;
}
&.right {
right: 0;
}
}
.player {
position: relative;
padding-bottom: 56.25%;
padding-top: 0px;
height: 0;
overflow: hidden;
iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
}
$( document ).ready(function() {
var vimeoplayer = [];
var vimeoiterator = 0;
$('.vimeo').each(function() {
var vimeoframe = $(this).find('iframe')[0];
vimeoplayer[vimeoiterator] = $f(vimeoframe);
vimeoiterator++;
});
$('.vimeo').hover(function() {
var index = $(this).index('.vimeo');
//vimeoplayer[index].api('setVolume', 0);
vimeoplayer[index].api('play');
}, function() {
var index = $(this).index('.vimeo');
vimeoplayer[index].api('pause');
});
});