如果是vue的话,再通过样式绑定就好了(isRotate在data中的初始值为false),如:
<image :class="[isRotate ? 'spanRotate' : 'spanReset']" src="xxx" @click="isRotate = !isRotate"/> 复制代码