user7455781
user7455781

Reputation:

How can I stop opening video in full screen in Safari?

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.

Demo

Upvotes: 4

Views: 5087

Answers (1)

Offbeatmammal
Offbeatmammal

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

Related Questions