我想從中間縮放我的img。現在它從左上角開始。這是我的代碼:如何從jquery的中間縮放我的圖像?
$(document).ready(function() {
$("#logo").animate({
height: '+=100%',
width: '+=100%'
});
});
#logoblock
{
position: relative;
width: 700px;
height: 700px;
margin: auto;
}
#logo
{
position: absolute;
width: 0%;
height: 0%;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<div id="logoblock">
<div id="logo">
<img src="http://placehold.it/700x700">
</div>
</div>
這可能嗎?
試試這個'.logo { text-align:center; } .logo img { width:50%; }' – Hearner