JQuery實現圖片輪播無縫滾動

望穿先生發表於2022-06-28

圖片輪播無縫滾動例項

實現效果展示預覽:
在這裡插入圖片描述

思路:

1.設定當前索引curIndex,和前一張索引prevIndex。(curIndex為下一次要顯示的圖片索引,prevIndex為現在看見的圖片)

2.點選下一張按鈕,圖片向左移動;點選前一張按鈕,圖片向右移動

3.滑動前將要滑入的圖片放指定位置,現在的照片prevIndex划走,要滑入的照片curIndex進入

style樣式

		<style type="text/css">
			* {
				margin: 0;
				padding: 0;
			}

			.box {
				width: 800px;
				height: 550px;
				border: 1px solid #000;
				margin: 50px auto;
				position: relative;
				overflow: hidden;
			}

			li {
				list-style: none;
			}

			.imgList {
				width: 800px;
				height: 550px;
				position: relative;
				overflow: hidden;
			}

			.imgList li {
				position: absolute;
				left: 800px;
			}
			.box img {
				width: 800px;
				height: 550px;
				position: absolute;
				left: 800px;
			}
			.btn {
				font-size: 40px;
				color: #fff;
				width: 50px;
				height: 80px;
				box-shadow: 0 0 18px #fff;
				position: absolute;
				top: 230px;
				text-align: center;
				line-height: 80px;
				border-radius: 50%;
				cursor: pointer;
			}
			#prev {
				left: 50px;
			}
			#next {
				right: 50px;
			}
			.nav {
				height: 50px;
				text-align: center;
				position: absolute;
				width: 100%;
				bottom: 30px;
			}
			.nav li {
				display: inline-block;
				width: 30px;
				height: 30px;
				background: #ccc;
			}
			.nav .on {
				background: #333;
			}
		</style>

html主體部分

		<div class="box">
			<img style="left: 0px;" src="./img/images/show/9/1.jpg" />
			<img src="./img/images/show/9/2.jpg"/>
			<img src="./img/images/show/9/3.jpg" />
			<img src="./img/images/show/9/4.jpg" />
			<img src="./img/images/show/9/5.jpg" />
			<div id="prev" class="btn"><</div>
			<div id="next" class="btn">></div>
			<ul class="nav">
				<li class="on"></li>
				<li></li>
				<li></li>
				<li></li>
				<li></li>
			</ul>
		</div>

js部分(使用Jquery實現)

		<script src="js/jquery-1.11.3.js"></script>
		<script>
			var prevIndex = 0;
			var curIndex = 0;
			$("#next").click(function() {
				//.is(":animated"):正在執行動畫返回true,沒在執行動畫返回false
				if ($(".box>img").eq(curIndex).is(":animated")) {
					return;
				}
				if (curIndex >= $(".box>img").length - 1) {
					curIndex = 0;
				} else {
					curIndex++
				}
				tab();
				prevIndex = curIndex;
			})
			$("#prev").click(function() {
				if ($(".box>img").eq(curIndex).is(":animated")) {
					return;
				}
				if (curIndex <= 0) {
					curIndex = $(".box>img").length - 1;
				} else {
					curIndex--;
				}
				tab();
				prevIndex = curIndex;
			})
			$(".nav li").click(function() {
				curIndex = $(this).index();
				if (curIndex == prevIndex) {
					return;
				}
				tab();
				prevIndex = curIndex;
			})
			//左邊按鈕:向右邊滑動;
			function tab() {
				//切大圖;
				if (curIndex == 0 && prevIndex == 4) {
					//邊界2,當前在最後一張,點選next
					//向左滑動:前一張向左滑動,當前那一張擺放在右邊,滑動到當前位置;
					$(".box>img").eq(prevIndex).animate({
						left: -800
					}, 1000)
					$(".box>img").eq(curIndex).css("left", "800px").animate({
						left: 0
					}, 1000)
				} else if (prevIndex == 0 && curIndex == 4  ) {
					//邊界1,當前在第一張,點選prev
					//向右滑動:前一張向右滑動,當前那一張擺放在左邊,滑動到當前位置
					$(".box>img").eq(prevIndex).animate({
						left: 800
					}, 1000)
					$(".box>img").eq(curIndex).css("left", "-800px").animate({
						left: 0
					}, 1000)
				} else if (curIndex > prevIndex) {
					$(".box>img").eq(prevIndex).animate({
						left: -800
					}, 1000)
					$(".box>img").eq(curIndex).css("left", "800px").animate({
						left: 0
					}, 1000)
				} else {
					$(".box>img").eq(prevIndex).animate({
						left: 800
					}, 1000)
					$(".box>img").eq(curIndex).css("left", "-800px").animate({
						left: 0
					}, 1000)
				}
				//切小點;
				$(".nav li").eq(curIndex).addClass("on").siblings().removeClass()
			}
		</script>
``

相關文章