0
我嘗試在jQuery中使用變換圖像(箭頭向上和向下)。Jquery圖像變換不能按預期工作?
當我再次點擊時,它會顛倒,但不會回來。
HTML
<div class="question">
<h3>Headline</h3>
<p>Paragraph</p>
<span></span>
</div>
JS
$('.question').click(function() {
$(this).find('span').css("transform", "rotateX(180deg)");
});