我试图让我的滑块向相反方向移动,但我无法弄清楚如何让它从右向左移动,而是从左向右移动。我可以让它从右到左,但我遇到的问题是左右移动,它不是一个完整的网格,而是两者之间的神秘差距。使用从左到右的方法,网格作为一个巨大的块移动而没有任何中断。
我怎样才能使滑块从右向左移动并停在最后一个li上,只用左箭头返回而不是按右/按钮完全环绕?
http://jsfiddle.net/YDSWA/2/(使用向右和向左箭头键移动滑块)
下面是我的滑块的jS,jsFiddle有CSS和HTML。
jQuery(document).ready(function ($) {
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({
right: -slideWidth
}, 700, function () {
$('#slider ul li').prependTo('#slider ul');
$('#slider ul').css('right', '');
})
}
function moveRight() {
$('#slider ul').animate({
right: -slideWidth
}, 700, function () {
$('#slider ul li:first-child').appendTo('#slider ul');
$('#slider ul').css('right', '');
})
}
$('#back').click(function () {
moveLeft();
})
$('#next').click(function () {
moveRight();
})
$(document).keydown(function (e) {
if (e.keyCode == 39) {
moveRight();
} else {
}
})
$(document).keydown(function (e) {
if (e.keyCode == 37) {
moveLeft();
} else {
}
})
});
感谢您的帮助!
答案 0 :(得分:1)
<强> LIVE DEMO 强>
<强> JQ:强>
jQuery(function($) {
var $sl = $('#slider'),
$ul = $('ul', $sl),
$li = $('li', $ul),
slideCount = $li.length,
slideWidth = $li.width(),
slideHeight = $li.height(),
sliderUlWidth = slideCount * slideWidth;
$sl.css({width: slideWidth, height: slideHeight});
$ul.css({width: sliderUlWidth});
function moveLeft() {
$ul.not(':animated').prepend( $('li:last-child', $ul) )
.css({left:-slideWidth})
.animate({left:0}, 700);
}
function moveRight() {
$ul.not(':animated').animate({left: -slideWidth}, 700, function() {
$(this).css({left: 0}).append( $('li:first-child', this) );
});
}
$('#back, #next').click(function() {
return this.id=='next' ? moveRight() : moveLeft();
});
$(document).keydown(function(e) {
var k = e.which;
if( k==39 || k==37 ){
e.preventDefault();
return k==39? moveRight() : moveLeft();
}
});
});
<强> CSS:强>
*{margin:0;padding:0;}
.uni_con {
margin: 0 auto;
width: 1200px;
}
#slider {
position: relative;
overflow: hidden;
margin: 0 auto;
background:#cf5;
}
#slider ul {
position: relative;
left:0;
list-style: none;
background:#f00;
}
#slider ul li {
float: left;
background: none;
width: 1200px;
background:#555;
display: inline;
position: relative;
}
#slider img {
cursor: pointer;
float:left;
height: 400px;
width: 400px;
}