Reputation: 2811
Are there any modals that can play youtube, vimeo, and videos uploaded to the website? I have been searching and can't find to many examples of modals
Upvotes: 1
Views: 21457
Reputation: 339896
There's no such thing as a built-in modal in HTML / JS.
However to implement a modal all you need is nothing more than a full window sized div between your player and the background content (using the z-index
style property) that prevents events from reaching the elements underneath it.
Upvotes: 0
Reputation: 72232
Yes, one example is Fancybox.
Here's a bunch of samples for using Vimeo, you can easily change to YouTube etc.
Upvotes: 4