我正在阅读有关 HTML5 Fullscreen API 的信息。现在我遇到了一个代码,它可以让你的浏览器全屏显示。
现在我想添加在全屏和普通屏幕上切换的功能。我无法完全理解代码。
该按钮允许我们全屏浏览浏览器。为什么我可以在再次点击时恢复正常?
CSS
<style>
body {
margin: 0px;
background-color: brown;
}
#contento:-webkit-full-screen {
width: 100%;
height: 100%;
}
#contento:-moz-full-screen {
width: 100%;
height: 100%;
}
</style>
Javascript
<script type="text/javascript">
function goFullscreen(id) {
// Get the element that we want to take into fullscreen mode
var element = document.getElementById(id);
// These function will not exist in the browsers that don't support fullscreen mode yet,
// so we'll have to check to see if they're available before calling them.
if (element.mozRequestFullScreen) {
// This is how to go into fullscren mode in Firefox
// Note the "moz" prefix, which is short for Mozilla.
element.mozRequestFullScreen();
} else if (element.webkitRequestFullScreen) {
// This is how to go into fullscreen mode in Chrome and Safari
// Both of those browsers are based on the Webkit project, hence the same prefix.
element.webkitRequestFullScreen();
}
// Hooray, now we're in fullscreen mode!
}
</script>
HTML
<body id="contento">
Hello
<button onclick="goFullscreen('contento'); return false">
Click Me To Go Fullscreen! (For real)
</button>