Detecting if a browser is in full screen mode

后端 未结 17 1882
误落风尘
误落风尘 2020-11-27 06:10

Is there any way of reliably detecting if a browser is running in full screen mode? I\'m pretty sure there isn\'t any browser API I can query, but has anyone worked it out b

17条回答
  •  野性不改
    2020-11-27 06:48

    For Safari on iOS can use:

    if (window.navigator.standalone) {
      alert("Full Screen");
    }
    

    More: https://developer.apple.com/library/archive/documentation/AppleApplications/Reference/SafariWebContent/ConfiguringWebApplications/ConfiguringWebApplications.html

提交回复
热议问题