Add CSS3 transition expand/collapse

后端 未结 5 923
难免孤独
难免孤独 2020-12-13 05:59

How do I add an expand/collapse transition?

5条回答
  •  别那么骄傲
    2020-12-13 06:43

    Here's a solution that doesn't use JS at all. It uses checkboxes instead.

    You can hide the checkbox by adding this to your CSS:

    .container input{
        display: none;
    }
    

    And then add some styling to make it look like a button.

    Here's the source code that I modded.

提交回复
热议问题