javascript - Open webpage in fullscreen in Safari on iOS -


there fullscreen mode in safari on ios. possible activate through javascript or similar?

thanks

no, there no way toggle fullscreen mode in safari on ios using javascript.

in order web page run in fullscreen mode, need add following meta tag, , page needs started bookmark on home screen:

<meta name="apple-mobile-web-app-capable" content="yes"> 

however, can detect if page running in fullscreen mode or not javascript using read property:

window.navigator.standalone 

Comments

Popular posts from this blog

c# - Operator '==' incompatible with operand types 'Guid' and 'Guid' using DynamicExpression.ParseLambda<T, bool> -