gpt4 book ai didi

javascript - 如何通过两次单击在两个方向上旋转图标?

转载 作者:行者123 更新时间:2023-11-30 15:52:40 25 4
gpt4 key购买 nike

我想在第一次点击时将图标顺时针旋转 90 度,在第二次点击时逆时针旋转 90 度。 (请记住,图标可以使用 <i> 标签或 <span> 标签加载)

最佳答案

试试这个

<a href="#"><div class="fa fa-anchor  rotation_90deg"></div></a>

像下面这样添加到 css 类中

.rotation_90deg{
-moz-transition: all 2s linear;
-webkit-transition: all 2s linear;
transition: all 2s linear;
}

.rotation_90deg.down{
-moz-transform:rotate(90deg);
-webkit-transform:rotate(90deg);
transform:rotate(90deg);
}

在你的脚本中

$(".rotation_90deg").click(function(){
$(this).toggleClass("down") ;
});

工作 fiddler http://jsfiddle.net/zakirshakir/3v2egwfs/790/

关于javascript - 如何通过两次单击在两个方向上旋转图标?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39071523/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com