我想使用jquery創建一個完整頁面的背景圖像,我將如何水平顯示下一個圖像並隱藏以前的圖像。檢查我的HTML和CSS代碼,以及我如何處理這個問題。我正嘗試使用slidetoggle()
或任何幻燈片效果來移動圖像。如何使用jquery水平移動全尺寸圖像滑塊
這裏是我的html:
<!DOCYPTE.html>
<html lang="en">
<head>
</head>
<body>
<div id="center">
</div>
<div id="img">
<img src="http://brainlubricator.com/wp-content/uploads/2013/11/data-center-google.jpg">
</div>
</body>
</html>
這裏是我的CSS:
html,body
{
height:100%;
}
#center
{
margin-right:auto;
margin-left:auto;
}
#img
{
position:fixed;
top:-50%;
left:-50%;
height:200%;
width:200%;
}
#img img
{
position:absolute;
top:0;
left:0;
right:0;
bottom:0;
margin:auto;
min-height:50%;
min-width:50%;
}
這裏是我的Jquery:
$(document).ready(function(){
$("img").slidetoggle("slow");
});
你可以在我的小提琴上嘗試它不工作我的結束http://jsfiddle.net/8fZKp/ – chris
在您的頁面中添加jQuery腳本引用.. – social
請參閱我編輯的區域! – social