Как выбрать текущую открытую ссылку в css?

У меня есть строка меню с 3 ссылками (Home (class="h"), Contact (class="c"), About(class="A")). Теперь в настоящее время открыта главная страница, поэтому мне нужна ссылка background colorHome ( class="h") greenи background colorдругие 2 ссылки black.

html5,css3,

0

Ответов: 1


0

Для этого вы можете использовать простой код JQuery. См. Пример: https://codepen.io/Nacorga/pen/rKryYL

<!DOCTYPE html>
<html>
<head>
    <title></title>
</head>

<style type="text/css">

    * {
        box-sizing: border-box;
        padding: 0;
        margin: 0;
    }

    ul {
        height: 60px;
        width: 100%;
    }

    li {
        float: left;
        width: 33.33333%;
        background: #000;
        height: 60px;
        list-style: none;
        text-align: center;
    }

    li:hover {
        cursor: pointer;
    }

    a {
        text-decoration: none;
        color: #fff;
        line-height: 60px;
    }

    .active {
        background-color: green; 
    }

</style>

<body>

    <ul>
        <li class="h">
            <a href="#">Home</a>
        </li>
        <li class="c">
            <a href="#">Contact</a>
        </li>
        <li class="a">
            <a href="#">About</a>
        </li>
    </ul>

    <!--SCRIPTS-->

    <script src="http://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script>

    <script type="text/javascript">

        let count = $('li').length;

        for (let i = 0; i< count; i++) {

            $($('li')[i]).click(function() {

                $('li').removeClass('active');
                $($('li')[i]).addClass('active');

            });

        }

    </script>

</body>
</html>
html5, css3,
Похожие вопросы
Яндекс.Метрика