0
一個簡單的演示將是甜蜜的!如何使用jQuery在整個頁面的中心顯示圖像?
一個簡單的演示將是甜蜜的!如何使用jQuery在整個頁面的中心顯示圖像?
這看起來比什麼都一個風格問題。您需要調整樣式設置才能完全正確。
img.centered
{
position: fixed;
left: 45%;
top: 45%;
width: 10%;
height: 10%;
}
document.ready
(
function()
{
$("body").append("<img src='test.jpg' class='centered' />");
}
);