在全屏模式下,可以在Safari中隐藏工具栏吗?


Answers:



10

进入全屏模式,右键单击地址栏周围的任意位置,然后在出现的菜单中单击“隐藏工具栏”。

在此处输入图片说明

尽管下次您进入全屏模式时,工具栏会返回。


3
请注意,因为一旦执行此操作,唯一的方法就是退出并再次进入全屏模式。
山姆·斯宾塞

1
不,您可以单击查看/自定义工具栏...来还原它
dmitry

8
这在Mavericks中似乎不起作用。
百翰

在下面查看我的解决方案。将与小牛一起使用。
rgtk

9

打开控制台(⌥⌘C或Develop> Show Error Console),粘贴以下代码:

(function() {
  var el = document.createElement('div'),
      docEl = document.documentElement;

  el.innerText = 'Go to fullscreen view';
  el.setAttribute('style', 'position: fixed; top: 10%; left: 10%; padding: 30%; background: #000; color: #fff; opacity: .7; cursor: pointer;')
  document.body.appendChild(el)

  el.onclick = function() {
    if (docEl.requestFullscreen) {
      docEl.requestFullscreen();
    } else if (docEl.mozRequestFullScreen) {
      docEl.mozRequestFullScreen();
    } else if (docEl.webkitRequestFullscreen) {
      docEl.webkitRequestFullscreen();
    }
    document.body.removeChild(el);
  };
})();

然后单击黑框。

您需要为此解决方案激活开发人员工具。要启用开发人员工具,请转至高级,单击窗口底部的“在菜单栏中显示开发菜单”。


我想知道是否可以将其制成书签
约翰·巴希尔

javascript:document.documentElement.webkitRequestFullScreen()
Xeat Peater de Xel

@ralfix,您的解决方案将无法使用,因为基于Webkit的浏览器需要通过用户操作(例如,通过click事件)触发的此类功能。
rgtk

@rgtos:使用Safari 8.0.8,它实际上对我来说很好用。
Peater de Xel 2015年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.