Reputation:
How can I stop opening video in full screen in Safari? The video starts playing on click on the button, which shows only in browsers where autoplay video is forbidden.
Upvotes: 4
Views: 5087
Reputation: 8228
add the playsinline
property to your view, as described in https://developer.apple.com/library/content/releasenotes/General/WhatsNewInSafari/Articles/Safari_10_0.html
eg
<video autoplay preload="auto" playsinline controls>
<source src="....">
</video>
Upvotes: 5