在浏览器中隐藏网页菜单

时间:2020-07-31 11:36:57

标签: angular cordova ionic-framework

大家好。我正在使用浏览器内打开网站上的特定页面,但我希望在打开网页菜单时将其隐藏,而不希望菜单显示。

enter image description here

我希望它只打开没有这样菜单的内容

enter image description here

请帮助我,谢谢。

1 个答案:

答案 0 :(得分:0)

根据官方插件documentation,您可以尝试在加载自定义CSS之后将其插入到窗口中。

const ref = cordova.InAppBrowser.open('http://apache.org', '_blank');
ref.show();
ref.on('loadstop').subscribe(() => {
    ref.insertCSS({ code: 'header{ display: none !important;}' });
});