ICode9

精准搜索请尝试: 精确搜索
首页 > 编程语言> 文章详细

javascript – 可以跳进滑块吗?

2019-07-02 00:24:16  阅读:182  来源: 互联网

标签:jquery javascript css slider html


是否可以获得特定幻灯片的链接?只要我在示例中选择链接,滑块就不再起作用了.仅显示没有功能的列表项.选择链接时,滑块应滚动到相应的幻灯片.这有可能吗?任何帮助将不胜感激.谢谢.

jQuery(document).ready(function($) {

  $('#checkbox').change(function() {
    setInterval(function() {
      moveRight();
    }, 3000);
  });

  var slideCount = $('#slider ul li').length;
  var slideWidth = $('#slider ul li').width();
  var slideHeight = $('#slider ul li').height();
  var sliderUlWidth = slideCount * slideWidth;

  $('#slider').css({
    width: slideWidth,
    height: slideHeight
  });

  $('#slider ul').css({
    width: sliderUlWidth,
    marginLeft: -slideWidth
  });

  $('#slider ul li:last-child').prependTo('#slider ul');

  function moveLeft() {
    $('#slider ul').animate({
      left: +slideWidth
    }, 200, function() {
      $('#slider ul li:last-child').prependTo('#slider ul');
      $('#slider ul').css('left', '');
    });
  };

  function moveRight() {
    $('#slider ul').animate({
      left: -slideWidth
    }, 200, function() {
      $('#slider ul li:first-child').appendTo('#slider ul');
      $('#slider ul').css('left', '');
    });
  };

  $('a.control_prev').click(function() {
    moveLeft();
  });

  $('a.control_next').click(function() {
    moveRight();
  });

});
#slider {
  position: relative;
  overflow: hidden;
  margin: 20px auto 0 auto;
  border-radius: 4px;
}
#slider ul {
  position: relative;
  margin: 0;
  padding: 0;
  height: 200px;
  list-style: none;
}
#slider ul li {
  position: relative;
  display: block;
  float: left;
  margin: 0;
  padding: 0;
  width: 500px;
  height: 300px;
  background: #ccc;
  text-align: center;
  line-height: 300px;
}
a.control_prev,
a.control_next {
  position: absolute;
  top: 40%;
  z-index: 999;
  display: block;
  padding: 4% 3%;
  width: auto;
  height: auto;
  background: #2a2a2a;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  opacity: 0.8;
  cursor: pointer;
}
a.control_prev:hover,
a.control_next:hover {
  opacity: 1;
  -webkit-transition: all 0.2s ease;
}
a.control_prev {
  border-radius: 0 2px 2px 0;
}
a.control_next {
  right: 0;
  border-radius: 2px 0 0 2px;
}
.slider_option {
  position: relative;
  margin: 10px auto;
  width: 160px;
  font-size: 18px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<a href="#one">SLIDE 1</a>
<br>
<a href="#two">SLIDE 2</a>
<br>
<a href="#three">SLIDE 3</a>
<br>
<a href="#four">SLIDE 4</a>
<br>
<div id="slider">
  <a href="#" class="control_next">
    <p>&gt;</p>
  </a>
  <a href="#" class="control_prev">
    <p>&lt;</p>
  </a>
  <ul>
    <li id="one">SLIDE 1</li>
    <li style="background: #aaa;" id="two">SLIDE 2</li>
    <li id="three">SLIDE 3</li>
    <li style="background: #aaa;" id="four">SLIDE 4</li>
  </ul>
</div>

解决方法:

你必须在这里做更多的工作 – 所以这就是我所做的:

I.首先,我创建了一个具有回调功能的slideRight函数:

function slideRight(callback) {
    $('#slider ul').animate({
      left: -slideWidth
    }, 200, function() {
      $('#slider ul li:first-child').appendTo('#slider ul');
      $('#slider ul').css('left', '');
      callback();
    });
}

II.修改了链接到属性data-peek的链接,链接到相应的幻灯片,如下所示:

<a href="#" class="peek" data-peek="one">SLIDE 1</a>

III.现在,以下脚本将发挥作用:

$('a.peek').click(function() {
    slide($('#slider ul'), $(this).attr('data-peek'));
  });

  function slide(el, peek) {
    if (el.find('li:nth-child(2)').attr('id') !== peek) {
      slideRight(function() {
        slide(el, peek);
      });
    }
  }

见下面的演示:

jQuery(document).ready(function($) {

  $('#checkbox').change(function() {
    setInterval(function() {
      moveRight();
    }, 3000);
  });

  var slideCount = $('#slider ul li').length;
  var slideWidth = $('#slider ul li').width();
  var slideHeight = $('#slider ul li').height();
  var sliderUlWidth = slideCount * slideWidth;

  $('#slider').css({
    width: slideWidth,
    height: slideHeight
  });

  $('#slider ul').css({
    width: sliderUlWidth,
    marginLeft: -slideWidth
  });

  $('#slider ul li:last-child').prependTo('#slider ul');

  function moveLeft() {
    $('#slider ul').animate({
      left: +slideWidth
    }, 200, function() {
      $('#slider ul li:last-child').prependTo('#slider ul');
      $('#slider ul').css('left', '');
    });
  };


  function moveRight() {
    $('#slider ul').animate({
      left: -slideWidth
    }, 200, function() {
      $('#slider ul li:first-child').appendTo('#slider ul');
      $('#slider ul').css('left', '');
    });
  };

  function slideRight(callback) {
    $('#slider ul').animate({
      left: -slideWidth
    }, 200, function() {
      $('#slider ul li:first-child').appendTo('#slider ul');
      $('#slider ul').css('left', '');
      callback();
    });
  }

  $('a.control_prev').click(function() {
    moveLeft();
  });

  $('a.control_next').click(function() {
    moveRight();
  });

  $('a.peek').click(function() {
    slide($('#slider ul'), $(this).attr('data-peek'));
  });

  function slide(el, peek) {
    if (el.find('li:nth-child(2)').attr('id') !== peek) {
      slideRight(function() {
        slide(el, peek);
      });
    }
  }

});
#slider {
  position: relative;
  overflow: hidden;
  margin: 20px auto 0 auto;
  border-radius: 4px;
}
#slider ul {
  position: relative;
  margin: 0;
  padding: 0;
  height: 200px;
  list-style: none;
}
#slider ul li {
  position: relative;
  display: block;
  float: left;
  margin: 0;
  padding: 0;
  width: 500px;
  height: 300px;
  background: #ccc;
  text-align: center;
  line-height: 300px;
}
a.control_prev,
a.control_next {
  position: absolute;
  top: 40%;
  z-index: 999;
  display: block;
  padding: 4% 3%;
  width: auto;
  height: auto;
  background: #2a2a2a;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  opacity: 0.8;
  cursor: pointer;
}
a.control_prev:hover,
a.control_next:hover {
  opacity: 1;
  -webkit-transition: all 0.2s ease;
}
a.control_prev {
  border-radius: 0 2px 2px 0;
}
a.control_next {
  right: 0;
  border-radius: 2px 0 0 2px;
}
.slider_option {
  position: relative;
  margin: 10px auto;
  width: 160px;
  font-size: 18px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<a href="#" class="peek" data-peek="one">SLIDE 1</a>
<br>
<a href="#" class="peek" data-peek="two">SLIDE 2</a>
<br>
<a href="#" class="peek" data-peek="three">SLIDE 3</a>
<br>
<a href="#" class="peek" data-peek="four">SLIDE 4</a>
<br>
<div id="slider">
  <a href="#" class="control_next">
    <p>&gt;</p>
  </a>
  <a href="#" class="control_prev">
    <p>&lt;</p>
  </a>
  <ul>
    <li id="one">SLIDE 1</li>
    <li style="background: #aaa;" id="two">SLIDE 2</li>
    <li id="three">SLIDE 3</li>
    <li style="background: #aaa;" id="four">SLIDE 4</li>
  </ul>
</div>

编辑:

这是一个不使用自定义属性的解决方案 – 使用id代替:

jQuery(document).ready(function($) {

  $('#checkbox').change(function() {
    setInterval(function() {
      moveRight();
    }, 3000);
  });

  var slideCount = $('#slider ul li').length;
  var slideWidth = $('#slider ul li').width();
  var slideHeight = $('#slider ul li').height();
  var sliderUlWidth = slideCount * slideWidth;

  $('#slider').css({
    width: slideWidth,
    height: slideHeight
  });

  $('#slider ul').css({
    width: sliderUlWidth,
    marginLeft: -slideWidth
  });

  $('#slider ul li:last-child').prependTo('#slider ul');

  function moveLeft() {
    $('#slider ul').animate({
      left: +slideWidth
    }, 200, function() {
      $('#slider ul li:last-child').prependTo('#slider ul');
      $('#slider ul').css('left', '');
    });
  };


  function moveRight() {
    $('#slider ul').animate({
      left: -slideWidth
    }, 200, function() {
      $('#slider ul li:first-child').appendTo('#slider ul');
      $('#slider ul').css('left', '');
    });
  };

  function slideRight(callback) {
    $('#slider ul').animate({
      left: -slideWidth
    }, 200, function() {
      $('#slider ul li:first-child').appendTo('#slider ul');
      $('#slider ul').css('left', '');
      callback();
    });
  }

  $('a.control_prev').click(function() {
    moveLeft();
  });

  $('a.control_next').click(function() {
    moveRight();
  });

  $('a.peek').click(function() {
    slide($('#slider ul'), $(this).attr('id').split('_')[1]);
  });

  function slide(el, peek) {
    if (el.find('li:nth-child(2)').attr('id') !== peek) {
      slideRight(function() {
        slide(el, peek);
      });
    }
  }

});
#slider {
  position: relative;
  overflow: hidden;
  margin: 20px auto 0 auto;
  border-radius: 4px;
}
#slider ul {
  position: relative;
  margin: 0;
  padding: 0;
  height: 200px;
  list-style: none;
}
#slider ul li {
  position: relative;
  display: block;
  float: left;
  margin: 0;
  padding: 0;
  width: 500px;
  height: 300px;
  background: #ccc;
  text-align: center;
  line-height: 300px;
}
a.control_prev,
a.control_next {
  position: absolute;
  top: 40%;
  z-index: 999;
  display: block;
  padding: 4% 3%;
  width: auto;
  height: auto;
  background: #2a2a2a;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  opacity: 0.8;
  cursor: pointer;
}
a.control_prev:hover,
a.control_next:hover {
  opacity: 1;
  -webkit-transition: all 0.2s ease;
}
a.control_prev {
  border-radius: 0 2px 2px 0;
}
a.control_next {
  right: 0;
  border-radius: 2px 0 0 2px;
}
.slider_option {
  position: relative;
  margin: 10px auto;
  width: 160px;
  font-size: 18px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<a href="#" class="peek" id="link_one">SLIDE 1</a>
<br>
<a href="#" class="peek" id="link_two">SLIDE 2</a>
<br>
<a href="#" class="peek" id="link_three">SLIDE 3</a>
<br>
<a href="#" class="peek" id="link_four">SLIDE 4</a>
<br>
<div id="slider">
  <a href="#" class="control_next">
    <p>&gt;</p>
  </a>
  <a href="#" class="control_prev">
    <p>&lt;</p>
  </a>
  <ul>
    <li id="one">SLIDE 1</li>
    <li style="background: #aaa;" id="two">SLIDE 2</li>
    <li id="three">SLIDE 3</li>
    <li style="background: #aaa;" id="four">SLIDE 4</li>
  </ul>
</div>

标签:jquery,javascript,css,slider,html
来源: https://codeday.me/bug/20190701/1352023.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有