你有什么想法让页面中的元素全屏显示吗?
例如,div或img?
说到“全屏”,我的意思是它应该占据用户屏幕的所有空间,就像我们用全屏模式观看视频一样。我不想显示浏览器窗口的任务栏/菜单栏。
有什么想法吗?
div.fullscreen{
display:block;
/*set the div in the top-left corner of the screen*/
position:absolute;
top:0;
left:0;
/*set the width and height to 100% of the screen*/
我的全屏应用程序覆盖了整个桌面(甚至任务栏)。但是,当我从应用程序本身启动一个新进程时,使用:
String command = "xterm";
Process p = Runtime.getRuntime().exec(command);
我在全屏应用程序上看到了新的应用程序(好),但我也看到了任务栏(不好)。如果我没有正确解释,我可以提供截图。