HTMLIFrameElement: allowFullscreen-Eigenschaft
Limited availability
This feature is not Baseline because it does not work in some of the most widely-used browsers.
Die allowFullscreen
-Eigenschaft des HTMLIFrameElement
-Interfaces ist ein boolescher Wert, der das allowfullscreen
-Attribut des <iframe>
-Elements widerspiegelt und angibt, ob die Inhalte des iframes requestFullscreen()
verwenden dürfen.
Hinweis: Diese Eigenschaft gilt als veraltet. Verwenden Sie stattdessen allow="fullscreen"
und HTMLIFrameElement.allow
.
Wert
Ein boolescher Wert.
Beispiele
html
<iframe id="el" allowfullscreen></iframe>
js
const el = document.getElementById("el");
console.log(el.allowFullscreen); // Output: true
Spezifikationen
Specification |
---|
HTML Standard # dom-iframe-allowfullscreen |
Browser-Kompatibilität
BCD tables only load in the browser
Siehe auch
- Fullscreen-API
Element.requestFullscreen()
- Permissions Policy
fullscreen
Permissions Policy directive