mirror of
https://github.com/logsol/chuck.js.git
synced 2026-05-11 10:37:34 +00:00
26 lines
No EOL
535 B
HTML
26 lines
No EOL
535 B
HTML
<html>
|
|
<head>
|
|
<title>FS Demo</title>
|
|
|
|
<link rel="stylesheet" href="style.css" />
|
|
<script type="text/javascript" src="screenfull.js"></script>
|
|
|
|
|
|
</head>
|
|
<body>
|
|
<div id="container">
|
|
<canvas id="canvas" width="1" height="1"></canvas>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|
|
<script type="text/javascript">
|
|
document.getElementById('canvas').onclick = function(){
|
|
console.log(screenfull.enabled)
|
|
if (screenfull.enabled) {
|
|
screenfull.toggle();
|
|
}
|
|
}
|
|
|
|
|
|
</script> |