我正在尝试 jQueryRotate,我想img
在单击时旋转 90 度,然后在下次单击时旋转回原始位置。我通过不同的谷歌搜索等无情地寻找,但没有找到我想要的答案。
这是我的代码:
<script type="text/javascript">
$(document).ready(function() {
$("#menu_icon").rotate({bind:{click: function(){
$(this).rotate({ duration:100, angle:0,animateTo:90,easing: $.easing.easeInOutExpo }, 10)}
}
});
});
</script>
我将如何调整它以创建我想要的结果?而且我不希望它只是闪烁并返回 90 度,我希望它像第一次点击一样随着动画移动。