我想要建立一個簡單的圖像滑塊我的網頁,這裏就是我想出了使用jQuery代碼,CSS -如何將圖像從左到右或從右到左滑動使用jquery?
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title></title>
<meta name="" content="">
<script type="text/javascript" src="jquery.js"></script>
<style type="text/css">
*{
margin:0; padding:0;
}
#container{
position:absolute; left:100px; top:100px;
width:102px;height:102px;
border:1px solid red;
overflow:hidden; display:inline;
}
#container img{float:left;}
</style>
<script type="text/javascript">
$(document).ready(function(){
setInterval(slideImages, 5000);
function slideImages(){
$('#container img:first-child').clone().appendTo('#container');
$('#container img:first-child').remove();
}
});
</script>
</head>
<body>
<div id="container">
<img src="1.jpg" />
<img src="2.jpg" />
<img src="3.jpg" />
<img src="4.jpg" />
<img src="5.jpg" />
</div>
</body>
</html>
雖然代碼工作並顯示圖像,我想通過讓新圖像滑入「容器」窗格來爲其添加更多效果。就像從正確的方向滑動到左邊,然後在那裏停留一段時間,然後下一個圖像通過從右向左滑動來替換現有的圖像。
請指導我如何獲得滑動r-to-l效果。我知道我可以向上/向下滑動使用jquery ..但如何做到這一點l-r或r -l?
謝謝!