Project Axiom is a web component set which aims to combine good part of Fluent Design System and Material Design to a single design language.
This repo contains code of Navigation Indicator animation of Fluent design System.
To use this package, install by one of following:
<script src="https://unpkg.com/@ax-design/navigation" />
<script>AxNavigation.register()</script>
<script type="module"> import { register } from 'https://unpkg.com/@ax-design/navigation/es/index.js' register() </script>
yarn add @ax-design/navigation
or npm i @ax-design/navigation
require('@ax-design/navigation').register()
import { register } from '@ax-design/navigation' register()
In order to use this component, we need to prepare some HTML:
<ax-navigation> <ax-navigation-item>Home</ax-navigation-item> <ax-navigation-item>Apps</ax-navigation-item> <ax-navigation-item>Games</ax-navigation-item> </ax-navigation>
In order to use this component, we need to prepare some HTML:
<ax-navigation vertical> <ax-navigation-item>Home</ax-navigation-item> <ax-navigation-item>Apps</ax-navigation-item> <ax-navigation-item>Games</ax-navigation-item> </ax-navigation>
To change the default item, just simply add a default attribute to navigation item.
<ax-navigation> <ax-navigation-item>Home</ax-navigation-item> <ax-navigation-item default>Apps</ax-navigation-item> <ax-navigation-item>Games</ax-navigation-item> </ax-navigation>
ax-navigation{ --navigation-indicator-color: red; }
ax-navigation{ --navigation-indicator-width: 10px; }
ax-navigation{ --navigation-indicator-speed: 2000ms; }
A `switch` event will be dispatched if you switched from one tab to another tab.
document.querySelector('.switch-event').addEventListener('switch', (event) => { document.querySelector('.switch-information').innerHTML = `You've switched from ${event.detail.from.innerText} to ${event.detail.to.innerText}` });