我有一個以對角圖像爲背景的方形div。如何使用JQuery懸停動畫背景圖片?
當我將鼠標懸停在DIV,我想對角線背景圖像擴大,如下圖所示。
我用CSS to accomplish this,但我想過渡到動畫,而不是「捕捉」。
<div class="content-box medium-box corner">
<div>
</div>
</div>
* {
margin: 0;
padding: 0; -webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;}
.content-box {
height: 250px;
width: 250px;
padding: 20px;
margin-bottom: 25px;
border: 1px solid #000;
background: url(http://keithdonegan.com/wp-content/uploads/2017/02/corner-bg.svg) 0px 0px;
background-size: cover;
transition: all .8s;
}
.content-box:hover {
background-size: 550px 550px;
background-position: 0px 0px;
}
我還要等等背景圖像動畫回到原來的位置,當光標離開股利。
任何想法?
就提供這樣的純CSS的解決方案。無圖像,無jQuery的,沒有爵士:-) –