Solved
Vuforia Studio View Navigation Menu
Hi!I'm trying to enable/hidden "View Navigation Menu" in Vuforia Studio. I know how to set it in info.
And I want to know how to set it by javascript code?
Hi!I'm trying to enable/hidden "View Navigation Menu" in Vuforia Studio. I know how to set it in info.
And I want to know how to set it by javascript code?
You can do this by modifying the CSS on the underlying elements, something like this:
// 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";
}Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.