我想爲我的主頁創建橫幅滾動功能。我不太確定在這裏使用哪種編程語言。我想編碼類似於:http://www.squidfaceandthemeddler.com/。但我希望頁腳在用戶滾動表格時保持在同一位置。是否有可能獲得該結果?我創建一個簡單的表格和2個圖像供用戶點擊使用上下按鈕向上或向下滾動表格
這裏是我的表碼:
<div id="banner" style="height:750px; width:600px; overflow:scroll;" >
<table width="750px" height="600px">
<tr>
<td><a href="sale_1.php"><img src="banner1.png"/></a></td>
</tr>
</table>
<table width="750px" height="600px">
<tr>
<td><a href="sale_2.php"><img src="banner2.png"/></a></td>
</tr>
</table>
<table width="750px" height="600px">
<tr>
<td><a href="sale_3.php"><img src="banner3.png"/></a></td>
</tr>
</table>
</div>
,這是滾動的向上和向下按鈕:
<table width="750px" height="30px">
<tr>
<td align="right"><img src="images/up_arrow.png"/><img src="images/down_arrow.png"/></td>
</tr>
</table>
嗯...阻止右鍵單擊一個網站...糟糕的設計,不要複製的那部分;) – musefan
提供一個jsfiddle和有人會幫助你。 – iappwebdev