2017-04-05 15 views

回答

1

你的CSS文件中加入:

your-div-class img { 
    -webkit-transition: all 0.3s; 
    transition: all 0.3s; 
} 
your-div-class img:hoover { 
    -webkit-transform: scale(1.6); 
     -ms-transform: scale(1.6); 
      transform: scale(1.6); 
} 
+0

我不需要懸停動畫,但我需要一個zoomIn動畫這樣的參考[鏈接](https://daneden.github.io/animate.css/) –

+1

實際上,您的參考顯示的是同樣的事情,只是使用關鍵幀。例如,如果您需要動畫以頁面加載的方式工作,例如,您可能需要使用'animate.css' –

+0

我已經使用那個,但在頁面加載時它不工作 –

相關問題