gpt4 book ai didi

javascript - 如何让我的js slider 向相反方向移动?

转载 作者:行者123 更新时间:2023-11-28 01:51:38 24 4
gpt4 key购买 nike

我试图让我的 slider 向相反方向移动,但我不知道如何让它从右向左移动,而是从左向右移动。我可以让它从右到左移动,但我遇到的问题是从右到左移动,它不会保持完整的网格,而是两者之间存在神秘的间隙。采用从左到右的方法,网格像一个巨大的 block 一样移动,没有任何中断。

如何才能使我的 slider 从右向左移动并停在最后一里,并且仅使用左箭头返回,而不是仅按右/按钮进行完全环绕?

http://jsfiddle.net/YDSWA/2/ (使用左右箭头键移动 slider )

下面是我的 slider 的 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 {
}
})
});

感谢您的帮助!

最佳答案

<强> 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;
}

关于javascript - 如何让我的js slider 向相反方向移动?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19626095/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com