Questions tagged [fullscreen]

A fullscreen object occupies the entire screen.

An application is considered to be fullscreen if it takes up the full area of the screen, as opposed to being in a window.

Common uses for full-screen include playing videos, viewing photo or playing games.

In Microsoft Windows 8 and above, Windows Store applications are shown in a full-screen mode. Full screen mode can be entered/exited using the F11 function key.

In Mac OS X Lion and above, a number of applications have a full-screen mode, that can be activated by clicking the arrows control in the top-right corner of an application window.

An element in a Web page can be taken full-screen by using the Fullscreen API.

References

3484 questions
1
vote
0 answers

How do I get viewport height units to work in fullscreen mode in Chrome on Android?

I'm writing a game that requires fullscreen mode in a browser. I'm using various divs, makding sure they add up to a total of 100vh. When viewing the page in Chrome on Android, the bottom of the page is not visible. This is known feature. When the…
1
vote
0 answers

How to exit fullscreen video on iOS CNA (Captive Network Assistant)

I'm trying to optimize UX in a WiFi Captive Portal at work and I want video to close at end. Problem is: The browser where video plays is the iOS CNA, that apparently has no support to *EndFullScreen() method, so it's not a possible solution. I've…
Canta
  • 1,480
  • 1
  • 13
  • 26
1
vote
2 answers

Changing size of two different kivy screens

I have two screens in a Kivy program. The first one represents the login screen, so it needs to be smaller, while the other has the data, so I need to make it full screen. I tried to use from kivy.config import Config Config.set('graphics',…
Mahdi
  • 133
  • 13
1
vote
1 answer

How to display a color fullscreen for X minutes?

I am trying to make a very simple app. The idea is to have the user input two times (e.g. 5min & 7min) in the main screen and then press a button to start the following fullscreen sequence: Green screen from 0-5min Yellow screen from 5-6.5min Red…
1
vote
1 answer

uwp javascript x-ms-webview webkitfullscreenchange event

I am using a x-ms-webview to display an embedded media website, It work great by the problem is I can't handle full screen event when user want to go to full screen. In iframe i can using webkitfullscreenchange to handle this, but with x-ms-webview…
user3611168
  • 335
  • 1
  • 6
  • 27
1
vote
1 answer

How to put image on top of fullscreen

I am creating silverlight video player. I have organized my player as grid. First row is video, second and third are control panels with buttons. When I switch to fullscreen mode I want to set specified image on the top. So i load image, resize and…
kamoks
  • 85
  • 2
  • 7
1
vote
1 answer

Moviepy fullscreen

I'm creating a simple pygame, and cannot find out how to make Moviepy preview clip in full screen. Using Moviepy for my opening cinematic. Here is my code: import moviepy import os from moviepy.editor import * import…
user2648117
1
vote
1 answer

Element not going completely fullscreen

Problem: the plot below is only partially fullscreen. How do I stretch this element to fill the entire viewable area of the screen upon fullscreen? The fullscreen function I am using: function toggleFullscreen(elem) { //function to make element…
scottlittle
  • 18,866
  • 8
  • 51
  • 70
1
vote
1 answer

AVPlayerView disappears when exiting full screen

On OS X (not iOS), I have an AVPlayerView in a window along with other controls. I am able to play it and have it go full screen with the button in the control bar. However, when I click the control bar to return to normal view (exiting full…
Trygve
  • 1,317
  • 10
  • 27
1
vote
2 answers

Disable full screen on youtube API - javascript

How to disable youtube API being fullscreen? I use my custom video controller. However, double clicking video will make it enter fullscreen. I have tried to set player parameter 'fs':0 or set iframe attribute "allowfullscreen" to 0, but neither…
eeeetaaaa
  • 19
  • 2
  • 3
1
vote
1 answer

How do I include screenshots of the full page in my serenity report (and not only of the viewport)?

This question is a part of another question I asked. However, I already found the answer to this part and thought it would be useful for other people as well. Part of my other question: I am using serenity in combination with cucumber for automated…
74nine
  • 838
  • 7
  • 13
1
vote
2 answers

Background image elements on top

I've been assigned the task to create a 404.php error page. I just started learning everything and this task is quite difficult. So far I have successuflly: set up github + atom clone the repository containing some code set up MAMP + Wordpress and…
1
vote
2 answers

Center within, within flexbox fullscreen

Im trying to get the text in the middle of the flexboxes so the big box h4 and p is centered to its box, as well as the text in the two smaller boxes are in the middle of their boxes. Greatful for every help. body { -moz-box-sizing:…
bboogie
  • 13
  • 5
1
vote
2 answers

Short circuit in JS stopping on first input

I'm having some problems trying to use short circuiting on a web page I am making. I am trying to use document.webkitExitFullscreen() || document.mozCancelFullScreen() || document.exitFullScreen(); But it seems to stop on the first try, despite…
1
vote
1 answer

How to start LightGallery in fullscreen mode?

I use the great LightGallery js module: https://github.com/sachinchoolur/lightGallery https://sachinchoolur.github.io/lightGallery/ How can I start LightGallery in fullscreen mode? Fullscreen mode can be activated by clicking the icon in the…
XPloRR
  • 342
  • 3
  • 8
1 2 3
99
100