Native js to implement drop-down menu

Native js to implement drop-down menu

Drop-down menus are also very common in real life. The js code used to implement them is almost the same as that of tab selection and accordion, so I will not go into details here.

I wrote a drop-down menu based on Suning.com's official website. The implementation code is as follows:

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Drop-down menu</title>
    <style>
        body,
        ul {
            padding: 0;
            margin: 0;
        }
        body{
            background-color:#ccc;
        }
        li {
            list-style: none;
        }
        a{
            text-decoration: none;
        }
        a:hover{
            color: rgb(235, 98, 35);
        }
        .nav {
            float: right;
            margin-top: 10px;
            margin-right: 80px;
            display: flex;
            width: 270px;
            height: 100px;
        }
      
        .nav>li {
            width: 80px;
            margin: 5px;
            text-align: center;
        }
        .selected{
            width: 80px;
            background-color:#fff;
            color: rgb(235, 98, 35);
            border:1px solid rgb(196, 194, 194);
        }
        .nav>li div:nth-child(1){
            height: 30px;
            line-height: 30px; 
        }
        .nav>li div:nth-child(2){
            display: none;
            height: 160px;
            width: 80px;
            background-color: #fff;
            border:1px solid rgb(196, 194, 194);
            border-top:1px solid #fff;
            line-height: 70px;
        }
        .nav>li>div:nth-child(2) li{
            height: 40px;
            line-height: 40px;
        }
    </style>
</head>

<body>
    
    <ul class="nav">
        <li>
            <div><a herf="#">My Order</a></div>
            <div>
            <ul>
                <li><a herf="#">Awaiting payment</a></li>
                <li><a herf="#">Waiting for shipment</a></li>
                <li><a herf="#">Waiting for delivery</a></li>
                <li><a herf="#">Awaiting evaluation</a></li>
            </ul>
            </div>
        </li>    
        <li>
            <div><a herf="#">My Yigoo</a></div>
            <div>
                    <ul>
                            <li><a herf="#">My Second-hand</a></li>
                            <li><a herf="#">My Follow</a></li>
                            <li><a herf="#">My Finance</a></li>
                            <li><a herf="#">Suning Member</a></li>
                        </ul>
            </div>
        </li>
        <li>
            <div><a herf="#">My Homepage</a></div>
            <div>
                    <ul>
                            <li><a herf="#">Avatar</a></li>
                            <li><a herf="#">Nickname</a></li>
                            <li><a herf="#">Signature</a></li>
                            <li><a herf="#">Address</a></li>
                        </ul>
            </div>
        </li>
    </ul>
    <script>
        var s = document.querySelectorAll(".nav li div:nth-child(1)");
        var d = document.querySelectorAll(".nav li div:nth-child(2)");
        for(var i=0;i<s.length;i++){
            s[i].index=i;
            s[i].onmouseover=function(){
                for(var j=0;j<s.length;j++){
                    s[j].className="";
                    d[j].style.display="none";
                }
                this.className="selected";
                d[this.index].style.display="block";
            }
        }
    </script>
   
</body>

</html>

The effect diagram is as follows:

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • JavaScript drop-down menu implementation code
  • css+js drop-down menu
  • js dynamically sets the default selected item in the select drop-down menu
  • JS implementation code for the three-level drop-down menu
  • A js implementation code for a date drop-down menu
  • JS real multi-level linkage drop-down menu class, easily realize the linkage menu of provinces, cities and districts!
  • Js click pop-up drop-down menu effect example
  • Three ways to implement the secondary drop-down menu in the navigation menu in JS
  • JavaScript to show and hide the drop-down menu
  • js to achieve the effect code of cascading drop-down menu of provinces and cities across the country

<<:  MySQL 8.0.20 compressed version installation tutorial with pictures and text

>>:  Configure selenium environment based on linux and implement operation

Recommend

CSS to achieve horizontal lines on both sides of the middle text

1. The vertical-align property achieves the follo...

Implementation steps for docker deployment of springboot and vue projects

Table of contents A. Docker deployment of springb...

SQL query for users who have logged in for at least n consecutive days

Take 3 consecutive days as an example, using the ...

Example analysis of mysql variable usage [system variables, user variables]

This article uses examples to illustrate the usag...

Vue implements accordion effect

This article example shares the specific code of ...

Summary of horizontal scrolling website design

Horizontal scrolling isn’t appropriate in all situ...

Docker swarm simple tutorial

swarm three virtual machines 132,133,134 1. Initi...

A brief introduction to MySQL InnoDB ReplicaSet

Table of contents 01 Introduction to InnoDB Repli...

Basic knowledge points of mysql worm replication

Worms replicate, as the name implies, by themselv...

Detailed explanation of MySQL 8's new feature ROLE

What problems does MySQL ROLE solve? If you are a...

How to implement a binary search tree using JavaScript

One of the most commonly used and discussed data ...

14 techniques for high-performance websites

Original : http://developer.yahoo.com/performance...

Detailed explanation of CSS elastic box flex-grow, flex-shrink, flex-basis

The functions of the three attributes flex-grow, ...

Blog Design Web Design Debut

The first web page I designed is as follows: I ha...