HTML+CSS+Query实现二级菜单加注解

在这里插入图片描述

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Document</title>
   
    <link href="./base-v3.0.min.css" type="text/css" rel="stylesheet" />
    <style>
      .mhti_login {
        margin: 0 auto;
        position: relative;
      }
      .mhti_login_tp {
        display: flex;
        align-items: center;
      }
      .mhti_login_tp p {
        font-size: 14px;
        line-height: 74px;
        color: #191919;
        transition: all 0.36s;
      }
      .mhti_login_tp_icon {
        margin-right: 8px;
        width: 24px;
      }
      .mhti_login_tp_arrow {
        width: 13px;
        transition: all 0.36s;
        margin-left: 8px;
      }
      .mhti_login_bt {
        width: 135px;
        border-radius: 5px;
        border-bottom: 1px solid #dfdfdf;
        background: #fbfbfb;
        box-shadow: 0px 4px 10.2px 0px rgba(113, 113, 113, 0.1);
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 66px;
        padding: 30px 0;
        display: none;
        z-index: 5;
      }
      .mhti_login_bt a {
        font-size: 14px;
        line-height: 2;
        color: #5a5a5a !important;
        transition: all 0.36s;
        text-align: center;
        display: block;
      }
      .mhti_login_bt li {
        margin-bottom: 20px;
      }
      .mhti_login_bt li:last-child {
        margin-bottom: 0;
      }
      .mhti_login_bt li.active a {
        color: orange !important;
      }
        .mhti_login.act .mhti_login_tp_arrow {
        transform: rotate(180deg);
      }
    </style>
    <script src="./jquery.min.js"></script>
  </head>
  <body>
    <div class="mhti_login">
      <div class="mhti_login_tp">
        <img
          src="https://cdn-www.huorong.cn/Public/Cn/images/com_icon03.svg"
          alt=""
          class="mhti_login_tp_icon"
        />
        <p>登录</p>
        <img
          src="https://cdn-www.huorong.cn/Public/Cn/images/com_icon08.svg"
          alt=""
          class="mhti_login_tp_arrow"
        />
      </div>
      <div class="mhti_login_bt">
        <ul>
          <li><a href="#" target="_blank">企业登录</a></li>
          <li><a href="#" target="_blank">代理商登录</a></li>
        </ul>
      </div>
    </div>
    <script>
      // 登录
      if ($(window).width() > 1199) {
        // 判断窗口宽度大于 1199px 时的行为

        // 鼠标进入登录区域时显示下拉菜单并添加激活类名
        $('.mhti_login').mouseenter(function () {
          $(this).find('.mhti_login_bt').stop().slideDown()
          $(this).addClass('act')
        })

        // 鼠标离开登录区域时隐藏下拉菜单并移除激活类名
        $('.mhti_login').mouseleave(function () {
          $(this).find('.mhti_login_bt').stop().slideUp()
          $(this).removeClass('act')
        })

        // 鼠标悬停在登录下拉菜单项时添加激活类名,并移除兄弟节点的激活类名
        $('.mhti_login_bt li').hover(
          function () {
            $(this).addClass('active').siblings().removeClass('active')
          },
          function () {
            // 鼠标离开时移除激活类名,确保原激活项保留类名
            $(this).removeClass('active')
            $('.mhti_login_bt li.act').addClass('active')
          }
        )
      } else {
        // 判断窗口宽度小于或等于 1199px 时的行为

        // 点击登录区域时切换下拉菜单显示状态,并切换激活类名
        $('.mhti_login').click(function (e) {
          e.stopPropagation()
          $(this).find('.mhti_login_bt').stop().slideToggle()
          $(this).toggleClass('act')
        })

        // 点击页面其他区域时隐藏下拉菜单并移除激活类名
        $('body').click(function () {
          $('.mhti_login').find('.mhti_login_bt').stop().slideUp()
          $('.mhti_login').removeClass('act')
        })
      }
    </script>
  </body>
</html>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

可可鸭~

想吃糖~我会甜

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值