首页 > 网站 > WEB开发 > 正文

图片轮播(左右切换)--js原生和jquery实现

2024-04-27 14:10:28
字体:
来源:转载
供稿:网友

图片轮播(左右切换)--js原生和jquery实现

图片轮播(左右切换)--js原生和jquery实现

左右切换的做法基本步骤跟 上一篇文章 淡入淡出 类似,只不过修改了一些特定的部分

(1)首先是页面的结构部分

对于我这种左右切换式

1.首先是个外围部分(其实也就是最外边的整体wrapper)2.接着就是你设置图片轮播的地方(也就是一个banner吧)3.然后是一个图片组(可以用新的div 也可以直接使用 ul-->li形式)

4.然后是图片两端的左箭头和右箭头5.然后是一个透明背景层,放在图片底部6.然后是一个图片描述info层,放在透明背景层的左下角(div 或 ul-->li)7.然后是一个按钮层,用来定位图片组的index吧,放在透明背景层的右下角(div 或 ul-->li)

由此,可以先构造出html结构

<div id="wrapper"><!-- 最外层部分 -->        <div id="banner"><!-- 轮播部分 -->            <ul class="imgList"><!-- 图片部分 -->            <li><a href="#"><img src="./img/test1.jpg" width="400px" height="200px" alt="puss in boots1"></a></li>            <li><a href="#"><img src="./img/test2.jpg" width="400px" height="200px" alt="puss in boots2"></a></li>            <li><a href="#"><img src="./img/test3.jpg" width="400px" height="200px" alt="puss in boots3"></a></li>            <li><a href="#"><img src="./img/test4.jpg" width="400px" height="200px" alt="puss in boots4"></a></li>            <li><a href="#"><img src="./img/test5.jpg" width="400px" height="200px" alt="puss in boots5"></a></li>            </ul>            <img src="./img/PRev.png" width="20px" height="40px" id="prev">            <img src="./img/next.png" width="20px" height="40px" id="next">            <div class="bg"></div> <!-- 图片底部背景层部分-->            <ul class="infoList"><!-- 图片左下角文字信息部分 -->                <li class="infoOn">puss in boots1</li>                <li>puss in boots2</li>                <li>puss in boots3</li>                <li>puss in boots4</li>                <li>puss in boots5</li>            </ul>            <ul class="indexList"><!-- 图片右下角序号部分 -->                <li class="indexOn">1</li>                <li>2</li>                <li>3</li>                <li>4</li>                <li>5</li>            </ul>        </div>    </div>

相对于之前,知识增多了两个箭头img标签

(2)CSS样式部分(图片组的处理)跟淡入淡出式就不一样了

淡入淡出只需要显示或者隐藏对应序号的图片就行了,直接通过display来设定

左右切换式则是采用图片li 浮动,父层元素ul 总宽为总图片宽,并设定为有限banner宽度下隐藏超出宽度的部分

然后当想切换到某序号的图片时,则采用其ul 定位 left样式设定相应属性值实现

比如显示第一张图片初始定位left为0px, 要想显示第二张图片则需要left:-400px 处理

<style type="text/css">    body,div,ul,li,a,img{margin: 0;padding: 0;}    ul,li{list-style: none;}    a{text-decoration: none;}    #wrapper{position: relative;margin: 30px auto;width: 400px;height: 200px;}    #banner{position:relative;width: 400px;height: 200px;overflow: hidden;}    .imgList{position:relative;width:2000px;height:200px;z-index: 10;overflow: hidden;}    .imgList li{float:left;display: inline;}    #prev,    #next{position: absolute;top:80px;z-index: 20;cursor: pointer;opacity: 0.2;filter:alpha(opacity=20);}    #prev{left: 10px;}    #next{right: 10px;}    #prev:hover,    #next:hover{opacity: 0.5;filter:alpha(opacity=50);}    .bg{position: absolute;bottom: 0;width: 400px;height: 40px;z-index:20;opacity: 0.4;filter:alpha(opacity=40);background: black;}    .infoList{position: absolute;left: 10px;bottom: 10px;z-index: 30;}    .infoList li{display: none;}    .infoList .infoOn{display: inline;color: white;}    .indexList{position: absolute;right: 10px;bottom: 5px;z-index: 30;}    .indexList li{float: left;margin-right: 5px;padding: 2px 4px;border: 2px solid black;background: grey;cursor: pointer;}    .indexList .indexOn{background: red;font-weight: bold;color: white;}</style>

(3)页面基本已经构建好久可以进行js的处理了

一、jQuery方式 demo

照常先说jq处理

1.全局变量等

 var curIndex = 0,  //当前index            imgLen = $(".imgList li").length;  //图片总数

2.自动切换定时器处理

      // 定时器自动变换2.5秒每次    var autoChange = setInterval(function(){         if(curIndex <  imgLen-1){             curIndex ++;         }else{             curIndex = 0;        }        //调用变换处理函数        changeTo(curIndex);      },2500);

3.为左右箭头添加事件处理

左箭头

    //左箭头滑入滑出事件处理    $("#prev").hover(function(){         //滑入清除定时器        clearInterval(autoChange);    },function(){         //滑出则重置定时器        autoChangeAgain();    });    //左箭头点击处理    $("#prev").click(function(){         //根据curIndex进行上一个图片处理        curIndex = (curIndex > 0) ? (--curIndex) : (imgLen - 1);        changeTo(curIndex);    });

右箭头

 //右箭头滑入滑出事件处理   $("#next").hover(function(){         //滑入清除定时器        clearInterval(autoChange);    },function(){         //滑出则重置定时器        autoChangeAgain();    });    //右箭头点击处理    $("#next").click(function(){         curIndex = (curIndex < imgLen - 1) ? (++curIndex) : 0;        changeTo(curIndex);    });

其中autoChangeAgain()就是一个重置定时器函数

//清除定时器时候的重置定时器--封装    function autoChangeAgain(){             autoChange = setInterval(function(){             if(curIndex < imgLen-1){                 curIndex ++;            }else{                 curIndex = 0;            }        //调用变换处理函数            changeTo(curIndex);          },2500);        }

其中changeTo()就是一个图片切换的处理函数

function changeTo(num){         var goLeft = num *  400;        $(".imgList").animate({left: "-" + goLeft + "px"},500);        $(".infoList").find("li").removeClass("infoOn").eq(num).addClass("infoOn");        $(".indexList").find("li").removeClass("indexOn").eq(num).addClass("indexOn");    }

每传入一个图片序号,则按理进行goLeft

4.为右下角的那几个li 按钮绑定事件处理

//对右下角按钮index进行事件绑定处理等    $(".indexList").find("li").each(function(item){         $(this).hover(function(){             clearInterval(autoChange);            changeTo(item);            curIndex = item;        },function(){             autoChangeAgain();        });    });

jq就是这样,简便,原生代码量就有些多了

完整代码

  1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">  2 <html xmlns="http://www.w3.org/1999/xhtml">  3 <head>  4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />  5 <title>图片轮播 jq(左右切换)</title>  6 <style type="text/css">  7     body,div,ul,li,a,img{margin: 0;padding: 0;}  8     ul,li{list-style: none;}  9     a{text-decoration: none;} 10  11     #wrapper{position: relative;margin: 30px auto;width: 400px;height: 200px;} 12     #banner{position:relative;width: 400px;height: 200px;overflow: hidden;} 13     .imgList{position:relative;width:2000px;height:200px;z-index: 10;overflow: hidden;} 14     .imgList li{float:left;display: inline;} 15     #prev, 16     #next{position: absolute;top:80px;z-index: 20;cursor: pointer;opacity: 0.2;filter:alpha(opacity=20);} 17     #prev{left: 10px;} 18     #next{right: 10px;} 19     #prev:hover, 20     #next:hover{opacity: 0.5;filter:alpha(opacity=50);} 21     .bg{position: absolute;bottom: 0;width: 400px;height: 40px;z-index:20;opacity: 0.4;filter:alpha(opacity=40);background: black;} 22     .infoList{position: absolute;left: 10px;bottom: 10px;z-index: 30;} 23     .infoList li{display: none;} 24     .infoList .infoOn{display: inline;color: white;} 25     .indexList{position: absolute;r
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表