Use the event name in methods like addEventListener()
, or set an event handler property.
addEventListener("contextlost", (event) => { })
oncontextlost = (event) => { }
Event type
A generic Event
.
The code fragment below detects the contextlost
event.
const canvas = document.getElementById("canvas");
canvas.addEventListener("contextlost", (event) => {
console.log(event);
});
To prevent the context from being restored the code might instead look like this:
const canvas = document.getElementById("canvas");
canvas.addEventListener("contextlost", (event) => {
event.preventDefault();
});
Specifications Browser compatibility
Loadingâ¦
See alsoHTMLCanvasElement: contextrestored
eventCanvasRenderingContext2D.isContextLost()
OffscreenCanvas: contextlost
eventRetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4