您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關js怎么實現單張圖片平移切換效果,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
1、能夠嵌入動態文本于HTML頁面。2、對瀏覽器事件做出響應。3、讀寫HTML元素。4、在數據被提交到服務器之前驗證數據。5、檢測訪客的瀏覽器信息。6、控制cookies,包括創建和修改等。7、基于Node.js技術進行服務器端編程。
由于個人不需要手動切換功能,因此把那部分的內容刪了,主要是增加了無縫切換的效果。
原理也很簡單,大概是一張圖移動到左邊以后,從底部移回最右,等待下一次循環。
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="js/jquery-1.10.1.min.js"></script> </head> <body> <div class="wrapper"> <h2>jquer實現圖片切換</h2> <div id="focus"> <ul> <!-- 這里有三個z-index的設置 --> <li><div class="switch_pic" ></div></li> <li><div class="switch_pic" ></div></li> <li><div class="switch_pic" ></div></li> <li><div class="switch_pic" ></div></li> <li><div class="switch_pic" ></div></li> <li><div class="switch_pic" ></div></li> </ul> </div> </div> <script type="text/javascript"> $(function() { var sWidth = $("#focus").width(); var len = $("#focus ul li").length; var index = 0; var picTimer; var $pics = $("#focus ul li").find('.switch_pic');//獲取所有圖片 showPics(index); //網頁打開立即執行一次動畫 picTimer = setInterval(function() { index++; if(index == len) {index = 0;} showPics(index); },3000);//3000毫秒的間隔 //顯示圖片函數,根據接收的index值顯示相應的內容 function showPics(index) { //普通切換 var nowLeft = -sWidth; //每次移動固定量 var $pic = $pics.eq(index);//獲取當前要移出的圖片 var $nexPic = $pics.eq((index+1)%len);//當前要移入的圖片 var $nexnexPic = $pics.eq((index+2)%len);//下一個要移入的圖片 $nexPic.css("left",sWidth);//下一個圖片移動到最右 //當前要移出的圖片開始左移,模式設為平滑"linear",速度和間隔一樣 $pic.animate({"left":nowLeft},3000,"linear",function(){ // 當前圖片完全移出后,重新設置z-index $pic.css("z-index",1); $nexPic.css("z-index",3); $nexnexPic.css("z-index",2); }); //當前要移入的圖片同時左移 $nexPic.animate({"left":0},3000,"linear"); } }); </script> <style type="text/css"> *{margin:0;padding:0;} body{font-size:12px;color:#222;font-family:Verdana,Arial,Helvetica,sans-serif;background:#f0f0f0;} .clearfix:after{content: ".";display: block;height: 0;clear: both;visibility: hidden;} .clearfix{zoom:1;} ul,li{list-style:none;} img{border:0;} .wrapper{width:800px;margin:0 auto;padding-bottom:50px;} h2{height:50px;line-height:50px;font-size:22px;font-weight:normal;font-family:"Microsoft YaHei",SimHei;margin-bottom:20px;} #focus{width:450px;height:350px;overflow:hidden;position:relative;} #focus ul{height:380px;position:absolute;} #focus ul li{float:left;width:450px;height:350px;overflow:hidden;position:absolute;background:#000;} #focus ul li div{position:absolute;overflow:hidden;width: 450px;height: 350px;} </style> </body>
關于“js怎么實現單張圖片平移切換效果”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。