Rotate image on toggle with jQuery

前端 未结 2 679
夕颜
夕颜 2021-01-05 19:42

Site in question: http://mtthwbsh.com

I\'m attempting to create a collapsable nav where when toggled, the arrow points up (and down when hidden).

I\'ve been

2条回答
  •  萌比男神i
    2021-01-05 20:34

    It's really just added some CSS to an element. You could create a class in your stylesheet:

    .rotate {
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
    }
    

    And then just use toggle class to add/remove it.

    This will not provide any animation. CSS3 transitions can even do that for you without requiring javascript to animate. Take a look at this, which has an JSFiddle demo if you want to try it.

    Edit

    Here's a demo on how to perform a CSS transition in both directions:

    http://jsfiddle.net/jwhitted/NKTcL/

提交回复
热议问题