显示或隐藏视图导航菜单
通过修改底层元素的 CSS,可在 Vuforia View 中隐藏或显示视图导航菜单。例如:
// the "show" param is boolean: true to show the nav bar, false to hide it
$scope.showHeader = function(show) {
document.querySelector(".nav-bar-container").style.display = show?"block":"none";
document.querySelector(".has-header").style.top = show?"44px":"0px";