運用編碼擴充 Vuforia Studio 功能 > 在 Vuforia Studio 中使用 JavaScript > 顯示或隱藏「檢視導覽功能表」
  
顯示或隱藏「檢視導覽功能表」
您可以在 Vuforia View 修改基礎元素上的 CSS 以顯示或隱藏「檢視導覽功能表」。例如:
// 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";