Questions tagged [html5-fullscreen]

The feature of the HTML5 Javascript API that allows for a document element to be displayed fullscreen.

149 questions
0
votes
0 answers

Can I programatically cancel user enabled fullscreen mode in Chrome?

I'm making a Chrome extension that depends on using popups. This is a problem if Chrome is in fullscreen mode as they do not appear. I can disable programatically enabled fullscreen mode by using: document.webkitCancelFullScreen() However this does…
Shane_IL
  • 325
  • 1
  • 4
  • 16
0
votes
2 answers

how to open sidenav when mouse goes out of screen in fullscreen mode of video in html5?

I want to call function which opens sidenav in webpage. But I want to do it when my mouse cursor goes out of the screen in full =screen mode of video in HTML5. What should I do?
0
votes
1 answer

Abusing faked user input in web browser

I stumbled across the HTML5 fullscreen API which lets me set the browser to fullscreen mode from JavaScript. For further reading: http://demo.web3designs.com/javascript-jquery-fullscreen-browser-window-html5-technology.htm) To prevent abuse it is…
Beric
  • 63
  • 2
  • 9
0
votes
1 answer

Edit iframe attributes from a widget in Adobe Captivate

I am writing a widget for Adobe Captivate, which has to work in HTML5. This widget contains a button to toggle the full screen mode. Basically, the plugin looks like that: function toggleFullscreen(elem) { elem = elem ||…
Dunatotatos
  • 1,706
  • 15
  • 25
0
votes
1 answer

play/pause HTML5 video with spacebar in fullscreen makes error sound

Important: This was a bug in Safari 10 Public Beta My code should do so the spacebar become a shortcut for playing/pause the video, but only when the user is having the mouse over the video, or are in fullscreen. And it works! But in fullscreen…
TheCrazyProfessor
  • 919
  • 1
  • 15
  • 31
0
votes
0 answers

function exitFullscreen() suddenly doesn't work

I think I may make mistakes on JS file but the console tells me no error. I got this problem after a small no-respond occured on my pc while I am writing on JS file. It's a simplified version of my code so some names may be strange.But I try my best…
张绍峰
  • 301
  • 2
  • 13
0
votes
1 answer

How can I change browser "missing area" color when toggling full screen for an element smaller than the whole body?

I have the following problem: when toggling custom full-screen mode from the Web application, the surrounding background is black and I want to change it (as the actual background). Details come below. 1) Javascript code to toggle fullscreen and…
Alexei - check Codidact
  • 22,016
  • 16
  • 145
  • 164
0
votes
1 answer

Fullscreen API and external links

I'm trying to open a new page (with a different layout) using the fullscreen API. When an user clicks on the open course link, the proper page/layout will open in fullscreen mode. I'm using this function to fire full screen mode: // Find the right…
starbolt
  • 437
  • 1
  • 3
  • 15
0
votes
1 answer

I want the user to be able to use the native
evvvvritt
  • 23
  • 7
0
votes
1 answer

Why chrome exits from fullscreen on popup?

I am using https://github.com/private-face/jquery.fullscreen for fullscreen in my web page. In my page I have a button that opens a popup on click, on opening popup the fullscreen gets exit in chrome but not in other browsers. What might be the…
0
votes
0 answers

How does openload.co manage to go into fullscreen mode without warning message on chrome?

The video hosting site openload.co seems to have found a way to force the browser to go into full screen mode without displaying the usual message on the top of the page (like "www.youtube.com is now full screen. Exit full screen. Allow"). At least…
0
votes
0 answers

Jumpy transitions on Chrome and Safari using FullScreen API (or resize)

I have created a portfolio-type (WordPress-based) website, using FullPage and Flexslider (as a absolute positioned pop-up), and it has a FullScreen button, which is currently giving me some nightmares, but only on the second ".section" in of the…
0
votes
1 answer

How can I disable the native fullscreen video button from controls in Firefox and IE?

To disable the HTML5 video fullscreen button in Chrome/Safari, this CSS works but not in FF/IE: video::-webkit-media-controls-fullscreen-button { display: none; } I found it in this thread where there is this fiddle that hides the…
Retropunk
  • 19
  • 1
  • 5
0
votes
1 answer

Escape Full screen plays video if video is paused

I have an HTML video that plays full screen when the user clicks play. If the user hits escape inside of full screen, everything works properly - the video stops playing and exits full screen. However, if the user pauses the video inside of full…
JordanBarber
  • 2,041
  • 5
  • 34
  • 62
0
votes
3 answers

How to detect user CLICK on the pop up box "Exit full screen (F11)" with javascript?

When the screen is full screen mode. User may go the normal mode with pressing F11 or Click on the pop up box to go normal mode. How do i detect user click on the pop up box only not any kind of keypress "Exit full screen (F11)" with…
Ahmad Sharif
  • 4,141
  • 5
  • 37
  • 49
1 2 3
9
10