Files
orico-official-website-old/app/us/view/include/top-header-nas.phtml

26 lines
859 B
PHTML
Executable File

<header class="narsPage-head">
<div class="headcenter">
<img
class="logico"
style="cursor:pointer;width: 13rem;height: 2.8rem;"
src="__PUBLIC__/web/images/newlogo_nas.png" />
<nav class="headnav">
{volist name="nav_header" id="vo"}
<a
class="navitem"
href="{$vo.url}" {if condition="$vo.is_new_window_open" }target="_blank" {/if}>
{$vo.name}
</a>
{/volist}
</nav>
</div>
</header>
<script type="text/javascript">
document.querySelectorAll('.navitem').forEach(function(it) {
it.classList.remove('hover')
var attr = it.getAttribute('href')
if (location.href == attr || location.pathname.endsWith(attr)) {
it.classList.add('hover')
}
})
</script>