移动屏幕上可点击的子菜单

问题描述 投票:0回答:2

我正在构建一个 WP 主题,并在用户鼠标悬停和出现下拉子菜单时使用默认子菜单行为。但由于在移动屏幕上悬停功能不起作用,我只是隐藏移动分辨率上的子菜单。 但正如我们在 WP 仪表板中看到的,子菜单已转换为可单击功能,我们可以通过单击父菜单来访问子菜单。 我如何在我的主题中实现此功能?

javascript jquery wordpress wordpress-theming
2个回答
1
投票

这就是您要找的东西

<!DOCTYPE html>
<html>

<head>
    <style>
        a {
            text-decoration: none;
        }
        .container {
            width: 90%;
            max-width: 900px;
            margin: 10px auto;
        }
        .toggleMenu {
            display: none;
            background: #666;
            padding: 10px 15px;
            color: #fff;
        }
        .nav {
            list-style: none;
            *zoom: 1;
            background: #175e4c;
        }
        .nav:before,
        .nav:after {
            content: " ";
            display: table;
        }
        .nav:after {
            clear: both;
        }
        .nav ul {
            list-style: none;
            width: 9em;
        }
        .nav a {
            padding: 10px 15px;
            color: #fff;
        }
        .nav li {
            position: relative;
        }
        .nav > li {
            float: left;
            border-top: 1px solid #104336;
        }
        .nav > li > .parent {
            background-image: url("images/downArrow.png");
            background-repeat: no-repeat;
            background-position: right;
        }
        .nav > li > a {
            display: block;
        }
        .nav li ul {
            position: absolute;
            left: -9999px;
        }
        .nav > li.hover > ul {
            left: 0;
        }
        .nav li li.hover ul {
            left: 100%;
            top: 0;
        }
        .nav li li a {
            display: block;
            background: #1d7a62;
            position: relative;
            z-index: 100;
            border-top: 1px solid #175e4c;
        }
        .nav li li li a {
            background: #249578;
            z-index: 200;
            border-top: 1px solid #1d7a62;
        }
        @media screen and (max-width: 768px) {
            .active {
                display: block;
            }
            .nav > li {
                float: none;
            }
            .nav > li > .parent {
                background-position: 95% 50%;
            }
            .nav li li .parent {
                background-image: url("images/downArrow.png");
                background-repeat: no-repeat;
                background-position: 95% 50%;
            }
            .nav ul {
                display: block;
                width: 100%;
            }
            .nav > li.hover > ul,
            .nav li li.hover ul {
                position: static;
            }
        }
    </style>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" type="text/css" href="style.css">
</head>

<body>
    <div class="container">

        <a class="toggleMenu" href="#">Menu</a>
        <ul class="nav">
            <li class="test">
                <a href="#">Shoes</a>
                <ul>
                    <li>
                        <a href="#">Womens</a>
                        <ul>
                            <li><a href="#">Sandals</a>
                            </li>
                            <li><a href="#">Loafers</a>
                            </li>
                            <li><a href="#">Flats</a>
                            </li>
                        </ul>
                    </li>
                    <li>
                        <a href="#">Mens</a>
                        <ul>
                            <li><a href="#">Loafers</a>
                            </li>
                            <li><a href="#">Sneakers</a>
                            </li>
                            <li><a href="#">Formal</a>
                            </li>
                        </ul>
                    </li>
                </ul>
            </li>



            <li>
                <a href="#">Shipping Info</a>
            </li>
        </ul>
    </div>

    <script type="text/javascript" src="http://code.jquery.com/jquery-1.7.2.min.js"></script>
    <script type="text/javascript">
        var ww = document.body.clientWidth;

        $(document).ready(function() {
            $(".nav li a").each(function() {
                if ($(this).next().length > 0) {
                    $(this).addClass("parent");
                };
            })

            $(".toggleMenu").click(function(e) {
                e.preventDefault();
                $(this).toggleClass("active");
                $(".nav").toggle();
            });
            adjustMenu();
        })

        $(window).bind('resize orientationchange', function() {
            ww = document.body.clientWidth;
            adjustMenu();
        });

        var adjustMenu = function() {
            if (ww < 768) {
                $(".toggleMenu").css("display", "inline-block");
                if (!$(".toggleMenu").hasClass("active")) {
                    $(".nav").hide();
                } else {
                    $(".nav").show();
                }
                $(".nav li").unbind('mouseenter mouseleave');
                $(".nav li a.parent").unbind('click').bind('click', function(e) {
                    // must be attached to anchor element to prevent bubbling
                    e.preventDefault();
                    $(this).parent("li").toggleClass("hover");
                });
            } else if (ww >= 768) {
                $(".toggleMenu").css("display", "none");
                $(".nav").show();
                $(".nav li").removeClass("hover");
                $(".nav li a").unbind('click');
                $(".nav li").unbind('mouseenter mouseleave').bind('mouseenter mouseleave', function() {
                    // must be attached to li so that mouseleave is not triggered when hover over submenu
                    $(this).toggleClass('hover');
                });
            }
        }
    </script>
</body>

</html>

0
投票

我正在开发一个自定义 WordPress 主题,其中子菜单出现在桌面用户的鼠标悬停上。然而,由于悬停功能在移动设备上不起作用,我想实现一个可点击的功能来打开和关闭移动屏幕上的子菜单。

WordPress 管理面板似乎有这种行为,即单击父菜单会在移动设备上打开子菜单。如何在我的 WordPress 主题中使用 jQuery 或 JavaScript 实现此功能,确保桌面屏幕的菜单仍然基于悬停?

预先感谢您的帮助!

© www.soinside.com 2019 - 2024. All rights reserved.