$(".zhanshi").click(function() { $(".dh_item2").toggle(); $(".w3").css("transform", "rotate(270deg)");});再次点击w2回到原位置
时间: 2023-08-29 07:14:01 浏览: 149
zhanshi.rar_DataShop.asp
可以在点击事件中添加一个判断条件,根据当前 w3 的旋转角度是否为270度来进行旋转。代码如下:
```
$(".zhanshi").click(function() {
$(".dh_item2").toggle();
if ($(".w3").css("transform") === "matrix(6.12323e-17, -1, 1, 6.12323e-17, 0, 0)") {
$(".w3").css("transform", "rotate(0deg)");
} else {
$(".w3").css("transform", "rotate(270deg)");
}
});
```
其中,`matrix(6.12323e-17, -1, 1, 6.12323e-17, 0, 0)` 是 `rotate(270deg)` 对应的 CSS 变换矩阵。
阅读全文