我想知道如何移動圖像,當我點擊它應該移動到左側中心時。如何將圖像移動到頁面的左側
代碼
<div id="myanm" >
<a href="#"><img src="img/home/Services.png" class="service animated fadeInUp img_move">
<h2 class="txt1 shadow animated fadeInUp">SERVICES</h2>
</a>
</div>
CSS文件
.service{
position:absolute;
left:0px;
bottom:0;
z-index:1;
animation-delay: 3.5s;
height:324px;
width:433px;
}
雖然已經動畫應用我不能做點擊功能。
你可以做的當前狀態的的jsfiddle你腳本? –