我有一個下面的HTML代碼:一種滑動右側和左側效果
<div class="menuTabs">
<div class="mtabArrowLeft">Left</div>
<input class="menutabBTN" name="" type="button" value="a" />
<input class="menutabBTN" name="" type="button" value="b" />
<input class="menutabBTN" name="" type="button" value="c" />
<input class="menutabBTN" name="" type="button" value="d" />
<input class="menutabBTN" name="" type="button" value="e" />
<input class="menutabBTN" name="" type="button" value="f"/>
<div class="mtabArrowRight">Right</div>
</div>
我想與值的前四個輸入從A至d被示出,並且當用戶點擊在div mtabArrowLeft節目其餘的隱藏輸入最多4個輸入。如果用戶點擊div mtabArrowRight將其逆轉回去。 我不知道該怎麼做。
這裏是我的CSS代碼:
.menuTabs {
float: left;
width: 537px;
}
.mtabArrowLeft {
float: left;
height: 25px;
width: 35px;
margin-left: 15px;
margin-right: 4px;
}
.mtabArrowRight {
float: left;
height: 25px;
width: 35px;
margin-left: 3px;
margin-right: 15px;
}
.menutabBTN {
float: left;
height: 25px;
width: 65px;
margin-right: 3px;
margin-left: 3px;
padding: 0px;
border-top-width: 0px;
border-right-width: 0px;
border-bottom-width: 0px;
border-left-width: 0px;
font-family: Tahoma, Geneva, sans-serif;
font-size: 12px;
color: #000;
text-align: center;
line-height: 25px;
}
你的援助事先了解
我不明白你的要求,但看看成J個查詢的效果(http://api.jquery.com/category/effects/,他們有演示)。我建議在那裏尋找並嘗試邁出第一步。如果遇到障礙,請回答更具體的問題。 – 2010-08-31 08:41:25