DEV Community

Freecodez
Freecodez

Posted on

Futuristic circular navigation

Hey there, You are most welcome to this article. I hope you will enjoy this article. If you like this article then please share this article with your friends and colleagues. If you have any questions or suggestions regarding this article then please comment down below.

Futuristic circular navigation

Futuristic circular navigation

For full source code visit : https://freecodez.com/post/zadtueu

<!-- https://freecodez.com -->
<main>
    <div data-theme="dark">
        <div id="box" class="selector active">
            <div class="knob" id="knob"></div>
            <ul>
                <li>
                    <span>Back</span>
                    <input type="radio" name="choice" checked="">
                </li>
                <li>
                    <span>Home</span>
                    <input type="radio" name="choice">
                </li>
                <li>
                    <span>Search</span>
                    <input type="radio" name="choice">
                </li>
                <li>
                    <span>Star</span>
                    <input type="radio" name="choice">
                </li>
                <li>
                    <span>More</span>
                    <input type="radio" name="choice">
                </li>
                <li>
                    <span>Refresh</span>
                    <input type="radio" name="choice">
                </li>
            </ul>
        </div>
    </div>
</main>
Enter fullscreen mode Exit fullscreen mode

Source Code : https://freecodez.com/post/zadtueu

For more such articles visit : https://freecodez.com

Top comments (0)