Roboneter
Roboneter

Reputation: 897

Vimeo not working on iPad

I have a website with a Vimeo video on it. But it doesn't work on iPad. It doesn't display it and it appears invisible. This works fine on desktop and android, but doesn't seem to work on iPad.

I have used this code:

<object width="520" height="324"><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=90321871"><param name="allowFullScreen" value="True"><param name="allowscriptaccess" value="always"><embed src="http://vimeo.com/moogaloop.swf?clip_id=90321871" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="True" width="520" height="324"></object>

What is causing this ? Need Guidance.

Thanks.

Upvotes: 1

Views: 2157

Answers (1)

John Klakegg
John Klakegg

Reputation: 943

<iframe src="https://player.vimeo.com/video/90321871" width="520" height="324" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe> should work fine.

The moogaloop player is deprecated.

See the documentation on how embeds work.

Upvotes: 1

Related Questions