我是新來的,我也是jquery的新手。我正在嘗試製作一個帶有background-fixed
的網站,其中包含一張圖片和四個鏈接,並顯示在每個頁面上,如:about,portfolio,contact,gallery。它應該是當我點擊左右,一個頁面下拉,再次點擊時,相同的第二個鏈接等所有鏈接。 我已經在html和css中編寫了以下代碼。我完成了一頁,但不知道如何添加更多頁面。我怎樣才能從頂部菜單滾動頁面
這裏是我的CSS:
body{
margin:auto;
padding:auto;
}
#page{
width:1000px;
height:1000px;
border:1px solid red;
background-image:url('done3.jpg');
}
#panel{
padding:50px;display:none;
}
#panel
{
padding:300px;
text-align:center;
background-color:#e5eecc;
border:solid 1px #c3c3c3;
}
#flip
{
width:100px;
padding:15px;
text-align:center;
background-color:pink;
border:solid 1px #c3c3c3;
}
這裏是我的html:
<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js">
</script>
<script>
$(document).ready(function(){
$("#flip").click(function(){
$("#panel").slideToggle("slow");
});
});
</script>
<link rel="stylesheet" type="text/css" href="style.css">
<title>demo</title>
</head>
<body>
<div id="page">
<div id="flip">about us</div>
<div id="panel">about us</div>
</div>
</body>
</html>
你的問題到底是什麼? –