Bootstrap mobile menu icon change to x close

后端 未结 8 1436
一向
一向 2021-02-05 13:54

EDIT

@zim answer uses 2020 CSS to easily solve the issue and better applies to Bootstrap 4.

The original question and selected answer are still

8条回答
  •  谎友^
    谎友^ (楼主)
    2021-02-05 14:41

    No need to use javascript through css also you can do please follow below code.

    HTML

    
    

    CSS (in css use :not which will perform faster animation rather than javascript)

    .navbar-toggle .icon-bar {
        position: relative;
        transition: all 200ms ease-in-out;
    }
    
    .navbar-toggle:not(.collapsed) .icon-bar:nth-of-type(1) {
        top: 6px;
        transform: rotate(45deg);
    }
    
    .navbar-toggle:not(.collapsed) .icon-bar:nth-of-type(2) {
        background-color: transparent;
    }
    
    .navbar-toggle:not(.collapsed) .icon-bar:nth-of-type(3) {
        top: -6px;
        transform: rotate(-45deg);
    }      
    

提交回复
热议问题