chuck.js/fullscreen/index.html
2013-12-28 20:43:45 +01:00

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>