I am trying to show a vimeo video in full screen on a web page.
Here's what it looks like now:

As you can see, black is full width, but not video. It should be full width, no controls are shown, play automatically and play in the loop.
My code is as follows:
<iframe src="https://player.vimeo.com/video/208176323?autoplay=1&loop=1&background=1" width="100%" height="500px" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
The client has vimeo plus, but not vimeo pro. Can anyone help me with this.
UPDATE:
I changed my code to this:
<style> .embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; height: auto; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } </style> <div class='embed-container'><iframe src='https://player.vimeo.com/video/208791851?autoplay=1&loop=1&background=1' frameborder='0' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>
But I still have a black frame at the bottom and top.

I created jsfiddle where you can also see this: https://jsfiddle.net/07fkfwz3/ . And the video that you see here has no limits.
source share