Bootstrap 3 collapse change chevron icon on click

前端 未结 12 1869
别那么骄傲
别那么骄傲 2020-12-08 03:01

I have read all related questions regarding my question and have tried them all to no avail. I can\'t seem to make my code work, even though I \"think\" almost every code I

12条回答
  •  南方客
    南方客 (楼主)
    2020-12-08 03:29

    you can try this.

    Here's the HTML Code:

    
    

    Here's the JQuery

    $('#accordion').on('shown.bs.collapse hidden.bs.collapse', function (e) {
             $(e.target).prev('.panel-heading').find("span.glyphicon").toggleClass('glyphicon-chevron-up glyphicon-chevron-down',200, "easeOutSine" );
    });
    

提交回复
热议问题