移动端浏览器全屏api,移动端全屏浏览器API使用方法
编辑:浏览器知识<style>
#fullscreenBtn {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
padding: 20px;
background-color: #f00;
color: #fff;
font-size: 20px;
border: none;
cursor: pointer;
}
#fullscreenDiv {
width: 100%;
height: 100%;
background-color: #ccc;
display: none;
}
#fullscreenDiv.show {
display: block;
}
</style><body>
全屏效果