JS实现点击拉拽轮播图pc端移动端适配


Posted in Javascript onSeptember 05, 2018
<div class="content">
      <button class="left">left</button>
      <button class="right">right</button>
      <div class="index"></div>
      <div class="lists">
        <!--<!–width: item的数量÷3乘以100%–>-->
        <div class="box">
          <!--width: 1÷item的数量乘以100%-->
          <div class="item">
            <img src="a.png" alt="a">
            <p>aaa</p>
          </div>
          <div class="item active">
            <img src="b.png" alt="b">
            <p>bbb</p>
          </div>
          <div class="item">
            <img src="c.png" alt="c">
            <p>ccc</p>
          </div>
          <div class="item">
            <img src="d.png" alt="d">
            <p>ddd</p>
          </div>
          <div class="item">
            <img src="e.png" alt="e">
            <p>eee</p>
          </div>
          <div class="item">
            <img src="f.png" alt="f">
            <p>ffff</p>
          </div>
        </div>
      </div>
    </div>
<script>
      $(function(){
//        循环数据 假设有个数组,有10条数据
//         var arr = [1,2,3,4,5,6,7,8,9,10];
//         var arr_len = arr.length;
//         var box = '<div class="box" style="width: '+arr_len/3*100+'%;"></div>';
//         $('.lists').append(box);
//         for (var i = 0; i < arr_len;i++){
//           var newDiv = document.createElement('div');
//           newDiv.innerHTML = '<img src="static/images/search-icon.png"/>'+
//             '<p>' +
//             (i+1)+
//             '</p>';
//           newDiv.className = 'item '+(i==1?'active':'');
//           newDiv.style = 'width: '+1/arr_len*100+'%;';
//           newDiv.onclick = (function(ind) {
//             return function () {
//               index = ind-1;
//               console.log(ind)
//               $(".box").animate({left: -index*100/3+"%"})
//               $(".item").removeClass('active')
//               $($(".item")[index+1]).addClass('active');
//               $('.index').text(index+2)
//             }
//           })(i) ;
//           $('.box').append(newDiv);
//         }
        var arr_len = $('.item').length;
        $('.box').css({width: arr_len/3*100+'%'})
        $('.item').css({width: 1/arr_len*100+'%'})
        $('.item').on('click',function (e) {
          var _this = $(e.target);
          if (!_this.hasClass('item')){
            _this = _this.parents('.item');
          }
          index = _this.index('.item')-1;
          $(".box").animate({left: -index*100/3+"%"})
          $(".item").removeClass('active')
          $($(".item")[index+1]).addClass('active');
          $('.index').text(index+2)
        })
        var index = 0;
        var len = arr_len;
        var temp = true;
        var pageX,pageY;
        $('.content').on('touchstart',function (e) {
          var touches = e.originalEvent.targetTouches[0];
          pageX = touches.pageX;
          pageY = touches.pageY;
        }).on('touchmove',function (e) {
          var touches = e.originalEvent.targetTouches[0];
          if (pageX>touches.pageX+20){
            left()
          }else if (pageX<touches.pageX-20){
            right()
          }
        })
        $(".left").on('click',left)
        $(".right").on('click',right)
        function left() {
          console.log(index,temp,'left')
          if (index < len-2&&temp){
            index++;
            move(index)
          }
        }
        function right() {
          if (index > 0&&temp){
            index--;
            move(index)
          }
        }
        function move(index) {
          if (temp){
            temp = false;
            var left = $(".box").offset().left;
            $(".box").animate({left: -index*100/3+"%"},function () {
              temp = true;
            })
            $(".item").removeClass('active')
            $($(".item")[index+1]).addClass('active');
            $('.index').text(index+2)
          }
        }
      })
.lists {
        position: relative;
        height: 100px;
        overflow: hidden;
      }
      .box {
        position: absolute;
      }
      .item {
        float: left;
        background: #008000;
        height: 100px;
      }
      .item img {
        width: 20px;
        display: block;
        margin: 0 auto;
      }
      .item p {
        text-align: center;
      }
      .item.active {
        background: #0000FF;
        font-size: 30px;
      }
      .item.active img {
        width: 40px;
      }
      .item.active p {
        font-size: 30px;
      }

总结

以上所述是小编给大家介绍的JS实现点击拉拽轮播图pc端移动端适配,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对三水点靠木网站的支持!

Javascript 相关文章推荐
用正则表达式 动态创建/增加css style script 兼容IE firefox
Mar 10 Javascript
Jquery中使用setInterval和setTimeout的方法
Apr 08 Javascript
让jQuery与其他JavaScript库并存避免冲突的方法
Dec 23 Javascript
php+js实现倒计时功能
Jun 02 Javascript
JavaScript函数模式详解
Nov 07 Javascript
省市选择的简单实现(基于zepto.js)
Jun 21 Javascript
完美解决JS文件页面加载时的阻塞问题
Dec 18 Javascript
详解微信小程序网络请求接口封装实例
May 02 Javascript
微信小程序人脸识别功能代码实例
May 07 Javascript
微信小程序导入Vant报错VM292:1 thirdScriptError的解决方法
Aug 01 Javascript
vue指令v-html使用过滤器filters功能实例
Oct 25 Javascript
Vue.js实现可编辑的表格
Dec 11 Javascript
vue中使用heatmapjs的示例代码(结合百度地图)
Sep 05 #Javascript
解决vue点击控制单个样式的问题
Sep 05 #Javascript
浅谈webpack4.x 入门(一篇足矣)
Sep 05 #Javascript
vuejs点击class变化的实例
Sep 05 #Javascript
jQuery滑动效果实现方法分析
Sep 05 #jQuery
vue+springboot实现项目的CORS跨域请求
Sep 05 #Javascript
jquery判断滚动条距离顶部的距离方法
Sep 05 #jQuery
You might like
MySql 按时间段查询数据方法(实例说明)
2008/11/02 PHP
理解php Hash函数,增强密码安全
2011/02/25 PHP
深入解析php中的foreach函数
2013/08/31 PHP
ThinkPHP在Cli模式下使用模板引擎的方法
2015/09/25 PHP
Jquery知识点一 Jquery的ready和Dom的onload的区别
2011/01/15 Javascript
jquery自动填充勾选框即把勾选框打上true
2014/03/24 Javascript
JavaScript的事件代理和委托实例分析
2015/03/25 Javascript
js实现简单折叠、展开菜单的方法
2015/08/28 Javascript
javascript实现html页面之间参数传递的四种方法实例分析
2015/12/15 Javascript
js 能实现监听F5页面刷新子iframe 而父页面不刷新的方法
2016/11/09 Javascript
深入理解JS继承和原型链的问题
2016/12/17 Javascript
详解用webpack2搭建angular2的项目
2017/06/22 Javascript
微信小程序删除处理详解
2017/08/16 Javascript
jQuery获取随机颜色的实例代码
2018/05/21 jQuery
Vue实现本地购物车功能
2018/12/05 Javascript
详细讲解如何创建, 发布自己的 Vue UI 组件库
2019/05/29 Javascript
JS 实现发送短信验证码的“59秒后重新发送验证短信”功能
2019/08/23 Javascript
vue 更改连接后台的api示例
2019/11/11 Javascript
Vue实现图书管理案例
2021/01/20 Vue.js
Vue中的nextTick作用和几个简单的使用场景
2021/01/25 Vue.js
Python操作MySQL数据库的两种方式实例分析【pymysql和pandas】
2019/03/18 Python
Python数据类型之List列表实例详解
2019/05/08 Python
Python Django 实现简单注册功能过程详解
2019/07/29 Python
python实现复制文件到指定目录
2019/10/16 Python
tensorflow 查看梯度方式
2020/02/04 Python
python图形开发GUI库wxpython使用方法详解
2020/02/14 Python
StubHub巴西:购买和出售您的门票
2016/07/22 全球购物
项目经理岗位职责
2013/11/11 职场文书
售后服务科岗位职责范文
2013/11/13 职场文书
趣味体育活动方案
2014/02/08 职场文书
读群众路线心得体会
2014/03/07 职场文书
国培计划培训感言
2014/03/11 职场文书
宾馆前台接待岗位职责
2015/04/02 职场文书
钢铁是怎样炼成的读书笔记
2015/06/29 职场文书
小学生作文之《压岁钱的烦恼》
2019/09/27 职场文书
Nginx HTTP跳转至HTTPS
2022/05/15 Servers