嘿,我有一个列表项的旋转木马,我希望能够做的是当用户点击列表项(比如列表中的第4个可见项)时,点击的项目向左滚动并最终在第一个可见的位置。
哦,我正在使用jCarousel插件来使轮播工作。
我有一个链接:
不确定如何开始,任何想法?
谢谢!
答案 0 :(得分:0)
这是我的轮播,可能有所帮助(它有点击事件和动画):
<html>
<head>
<title></title>
<style type="text/css">
#wrapper { width: 300px; overflow: hidden; height: 100px; min-height: 100px; position: relative; margin: 0; padding: 0; }
#ul { width: 9999px; height: 100px; position: absolute; margin: 0 auto; padding: 0; text-align: center; }
.li { float: left; list-style-type: none; position: relative; margin: 0 auto; padding: 0; }
</style>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.4.3.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
for (var i = 24; i > 0; i--) {
$('#ul').append('<li class="li" style="z-index: '+i+'"><img src="http://www.jamesgraygallery.com/artimages/Mee%20Kyung%20Shim/slides/Last%20Summer,50x50.jpg" alt="'+i+'" width="100" height="100"</li>');
}
$('#ul').css({ //Reset the carousel to the center
'left': -($('.li').size()*$('.li').width())/2
});
var howMany = $('.li').size();
var halfIt = howMany/2;
var merp = $('.li').index('#ul');
$('#right').click(function() { //Right button
$('#ul').animate({
left: '-='+($('.li').width()*3) //Move the images
}, 500);
return false;
});
$('#left').click(function() { //Left button
$('#ul').animate({
left: '+='+($('.li').width()*3) //Move the images
}, 500);
return false;
});
});
</script>
</head>
<body>
<div id="wrapper">
<ul id="ul">
</ul><br />
</div>
<a href="#" id="right">right</a> <a href="#" id="left">left</a>
</body>
</html>
这应该是一个让你入门的好地方。 ^ _ ^
注意:这不会为您提供所需的CLICK-TO-ANIMATE功能,但我不能为您做到这一切吗? :)