我正在使用Flot来绘制我的一些数据,我认为在点击按钮后使该图显示为全屏(占据显示器上的完整空间)会很棒。目前,我的div
如下:
<div id="placeholder" style="width:800px;height:600px"></div>
当然,style属性仅用于测试。在实际设计之后,我会将其移至CSS
。无论如何,我可以使这个div全屏并仍然保留所有事件处理?
答案 0 :(得分:69)
当您说“全屏”时,您的意思是计算机全屏,还是占用浏览器中的整个空间?
您无法强制用户进入全屏F11
;但是,您可以使用以下CSS
div {width: 100%; height: 100%;}
这当然会假设您的div是<body>
标记的子级。否则,除了上面的代码之外,您还需要添加以下内容。
div {position: absolute; top: 0; left: 0;}
答案 1 :(得分:68)
您可以使用HTML5 Fullscreen API(这是我认为最合适的方式)。
必须通过用户事件(点击,按键)触发全屏,否则无法使用。
这是一个按钮,可以点击div全屏。在全屏模式下,按钮单击将退出全屏模式。
$('#toggle_fullscreen').on('click', function(){
// if already full screen; exit
// else go fullscreen
if (
document.fullscreenElement ||
document.webkitFullscreenElement ||
document.mozFullScreenElement ||
document.msFullscreenElement
) {
if (document.exitFullscreen) {
document.exitFullscreen();
} else if (document.mozCancelFullScreen) {
document.mozCancelFullScreen();
} else if (document.webkitExitFullscreen) {
document.webkitExitFullscreen();
} else if (document.msExitFullscreen) {
document.msExitFullscreen();
}
} else {
element = $('#container').get(0);
if (element.requestFullscreen) {
element.requestFullscreen();
} else if (element.mozRequestFullScreen) {
element.mozRequestFullScreen();
} else if (element.webkitRequestFullscreen) {
element.webkitRequestFullscreen(Element.ALLOW_KEYBOARD_INPUT);
} else if (element.msRequestFullscreen) {
element.msRequestFullscreen();
}
}
});
#container{
border:1px solid red;
border-radius: .5em;
padding:10px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="container">
<p>
<a href="#" id="toggle_fullscreen">Toggle Fullscreen</a>
</p>
I will be fullscreen, yay!
</div>
另请注意,Chrome的Fullscreen API无法在非安全页面中使用。有关详细信息,请参阅https://sites.google.com/a/chromium.org/dev/Home/chromium-security/deprecating-powerful-features-on-insecure-origins。
需要注意的另一件事是:全屏CSS选择器。您可以将此附加到任何css选择器,以便在该元素为全屏时应用规则:
#container:-webkit-full-screen,
#container:-moz-full-screen,
#container:-ms-fullscreen,
#container:fullscreen {
width: 100vw;
height: 100vh;
}
答案 2 :(得分:22)
CSS方式:
#foo {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
JS方式:
$(function() {
function abso() {
$('#foo').css({
position: 'absolute',
width: $(window).width(),
height: $(window).height()
});
}
$(window).resize(function() {
abso();
});
abso();
});
答案 3 :(得分:17)
对于浏览器渲染区域的全屏,所有现代浏览器都支持简单的解决方案。
div#placeholder {
height: 100vh;
}
唯一值得注意的例外是Android低于4.3 - 但仅限于系统浏览器/ webview元素(Chrome工作正常)。
浏览器支持图表:http://caniuse.com/viewport-units
对于全屏显示器,请使用HTML5 Fullscreen API
答案 4 :(得分:9)
.widget-HomePageSlider .slider-loader-hide {
position: fixed;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
z-index: 10000;
background: white;
}
答案 5 :(得分:3)
<div id="placeholder" style="width:auto;height:auto"></div>
宽度和高度取决于您的flot或图表..
希望你想要这个...或
通过点击,你可以通过jquery
使用它$("#placeholder").css("width", $(window).width());
$("#placeholder").css("height", $(window).height());
答案 6 :(得分:2)
如果要将其显示在浏览器的可见区域(可滚动区域)之外,请使用文档高度。
CSS部分
#foo {
position:absolute;
top:0;
left:0;
}
JQuery部分
$(document).ready(function() {
$('#foo').css({
width: $(document).width(),
height: $(document).height()
});
});
答案 7 :(得分:1)
这是最简单的一个。
#divid {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
答案 8 :(得分:1)
可以像这样使用FullScreen API
function toggleFullscreen() {
let elem = document.querySelector('#demo-video');
if (!document.fullscreenElement) {
elem.requestFullscreen().catch(err => {
alert(`Error attempting to enable full-screen mode: ${err.message} (${err.name})`);
});
} else {
document.exitFullscreen();
}
}
演示
const elem = document.querySelector('#park-pic');
elem.addEventListener("click", function(e) {
toggleFullScreen();
}, false);
function toggleFullScreen() {
if (!document.fullscreenElement) {
elem.requestFullscreen().catch(err => {
alert(`Error attempting to enable full-screen mode: ${err.message} (${err.name})`);
});
} else {
document.exitFullscreen();
}
}
#container{
border:1px solid #aaa;
padding:10px;
}
#park-pic {
width: 100%;
max-height: 70vh;
}
<div id="container">
<p>
<a href="#" id="toggle-fullscreen">Toggle Fullscreen</a>
</p>
<img id="park-pic"
src="https://storage.coverr.co/posters/Skate-park"></video>
</div>
答案 9 :(得分:0)
<div id="placeholder" style="position:absolute; top:0; right:0; bottom:0; left:0;"></div>