2010-05-18 17 views

回答

2

您可能需要在調整圖像大小時調整頂部和左側位置,以便從中心調整大小,這意味着您需要將位置絕對置於位置更改才能生效。

+0

非常感謝您! – Tobi 2010-05-18 16:20:20

0

你可以把圖像放在一個div內,它的大小固定爲圖像的大小。 有css text-align:中心爲div,而margin:自動爲圖像,那麼它應該在div中居中。

例子:

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 
"http://www.w3.org/TR/html4/loose.dtd"> 

<html lang="en"> 
<head> 
    <script type="text/javascript" src="http://www.google.com/jsapi"></script> 
    <script type="text/javascript"> 
     google.load("jquery", "1.4"); 
    </script> 
    <script type="text/javascript"> 
     $(document).ready(function() { 
      $('#test').animate({width: 300}); 
     }); 
    </script> 
</head> 
<div style="width: 400px; text-align: center; border: 1px solid red"> 
    <img style="margin: auto;" id="test" src="http://www.google.se/intl/en_com/images/srpr/logo1w.png" width="131" height="98" alt="Picture 1"/> 
</div> 
</div> 
</body> 
</html>