在这里插入图片描述
如图,点击切换时,需要转动动画

<img src="@img/assets/4.png" class="zhuan" @click="zhuan" :class="{go:rotate , aa :!rotate}">

rotate: false, //控制互转效果

zhuan(){
	this.rotate = !this.rotate;
}
.aa {
	transition: all .5s;
}

.go {
	transform: rotate(180deg);
	transition: all .5s;
}
Logo

前往低代码交流专区

更多推荐