Vuforia Studio에서 코드를 사용하여 기능 확장 > Vuforia Studio에서 JavaScript 사용 > 보기 탐색 메뉴 표시 또는 숨기기
  
보기 탐색 메뉴 표시 또는 숨기기
기본 요소의 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";