我几乎完成了一个工作客户的网站,该网站的主页上有一个宽大的动态 slider 。由于他们给出的规范很少,目前 slider 非常基本;它只是通过更改 UL 上的左侧 CSS 属性从左向右滚动。显然,正因为如此,它会在到达末尾时突然滚动回开头,这显然是客户不希望看到的。
我不是 jQuery 专家,我想知道如何轻松更改此 slider ,使其无限滚动。
它还使用了一个简单的导航,它有四张幻灯片,底部有一个小控件栏,上面有每个控件的标题,可以快速跳转到特定的幻灯片。它还有一个箭头指向最新的幻灯片。
我找到了使其循环的解决方案,但我看不到任何看起来与导航兼容的解决方案。我真的很想不必从头开始,这可能吗?
这是我目前使用的所有代码,如果您想要 CSS,我也可以发布,但我认为这不是太需要。
非常感谢。
编辑:jsFiddle 结果
http://jsfiddle.net/hCXhZ/5/embedded/result/
您可能需要扩大结果部分以补偿响应式 CSS。我只是链接了样式表,因为我觉得很懒,无法找到文件中的所有部分...
jQuery
$(function(){
var screenWidth = $(window).width();
$("ul.slides li").css("width",screenWidth);
$(window).resize(function() {
var SlideWidth = $("ul.slides li").width();
var screenWidth = $(window).width();
$("ul.slides li").css("width",screenWidth);
});
$('.slider-controls li').click(function(){
var slideToID = $(this).children().attr('rel');
var SlideWidth = $("ul.slides li").width();
var slideTo = (slideToID * SlideWidth) - SlideWidth;
var arrowTo = 85+(240*(slideToID-1));
$('.slider-controls li').removeClass('active');
$(this).addClass('active');
$('ul.slides').animate({"left": -slideTo});
$('div.slider-arrow').animate({"left": arrowTo});
});
});
function slider() {
var SlideWidth = $("ul.slides li").width();
var SlideCount = $("ul.slides li").size();
var TotalWidth = SlideWidth * SlideCount;
var StopPos = TotalWidth - SlideWidth;
var CurPos = $("ul.slides").position().left;
if (CurPos <= -StopPos) {
$("ul.slides").animate({"left": "0"});
}
if (CurPos > -StopPos) {
$("ul.slides").animate({"left": "-="+SlideWidth+"px"});
}
var slideId = (-CurPos + SlideWidth) / SlideWidth;
var fSlideId = slideId + 1;
var arrowTo = 85+(240*(fSlideId-1));
$('.slider-controls li').removeClass('active');
if (fSlideId < 5) {
$('.slider-controls li.slide'+fSlideId+'').addClass('active');
$('div.slider-arrow').animate({"left": arrowTo});
}
if (fSlideId == 5) {
$('.slider-controls li.slide1').addClass('active');
$('div.slider-arrow').animate({"left": 85});
}
};
$(function(){
var SlideWidth = $("ul.slides li").width();
var SlideCount = $("ul.slides li").size();
var TotalWidth = SlideWidth * SlideCount;
var StopPos = TotalWidth - SlideWidth;
var CurPos = $("ul.slides").position().left;
timeout = setInterval('slider()', 6000);
$(window).width();
$("ul.slides").css("width",TotalWidth);
$(".controls .leftarrow").click(function() {
var CurPos = $("ul.slides").position().left;
if (CurPos >= 0){
$("ul.slides").animate({"left": "-"+StopPos})
}
if (CurPos < 0){
$("ul.slides").animate({"left": "+="+SlideWidth+"px"})
}
});
$(".controls .rightarrow").click(function() {
var CurPos = $("ul.slides").position().left;
if (CurPos <= -StopPos) {
$("ul.slides").animate({"left": "0"})
}
if (CurPos > -StopPos) {
$("ul.slides").animate({"left": "-=" + SlideWidth + "px"})
}
});
$(".slider-controls").hover(
function () {
clearInterval(timeout);
},
function () {
timeout = setInterval('slider()', 4000);
}
);
});
HTML
<div id="slider">
<ul class="slides">
<li style="background-image: url(http://ethercreative.net/npseymour/wp-content/uploads/2012/06/Innovation.jpeg);">
<div class="container_12">
<div class="grid_12">
<h1 class="title">Modern Innovation</h1>
<p> <a href=""></a></p>
</div>
</div>
</li>
<li style="background-image: url(http://ethercreative.net/npseymour/wp-content/uploads/2012/06/specialist-equipment.jpg);">
<div class="container_12">
<div class="grid_12">
<h1 class="title">Specialist Equipment</h1>
<p>NP Seymour have a range of packhouse and grading equipment
<br /> <a href="http://www.google.com">Click here to view our products</a></p>
</div>
</div>
</li>
<li style="background-image: url(http://ethercreative.net/npseymour/wp-content/uploads/2012/06/Home-Page-slider-3.jpeg);">
<div class="container_12">
<div class="grid_12">
<h1 class="title">Service and quality</h1>
<p>Purveyors of high quality, extremely useful Agricultural Machinery and accessories.<br /> <a href="http://www.google.com/">Click here to view our products</a></p>
</div>
</div>
</li>
<li style="background-image: url(http://ethercreative.net/npseymour/wp-content/uploads/2012/06/slide-11.jpg);">
<div class="container_12">
<div class="grid_12">
<h1 class="title">Latest Technology</h1>
<p>We specialise in orchard, vineyard and hop machinery<br /> <a href="http://www.google.com">Click here to view our products</a></p>
</div>
</div>
</li>
</ul>
</div>
<div class="slider-controls">
<ul class="container_12">
<div class="slider-arrow"></div>
<li class="alpha active slide1 grid_3">
<a href="javascript:;" rel="1">Modern Innovation</a>
</li>
<li class="slide2 grid_3">
<a href="javascript:;" rel="2">Specialist Equipment</a>
</li>
<li class="slide3 grid_3">
<a href="javascript:;" rel="3">Service and quality</a>
</li>
<li class=" omega slide4 grid_3">
<a href="javascript:;" rel="4">Latest Technology</a>
</li>
</ul>
</div>
最佳答案
设法使用此处找到的脚本使其工作:http://www.queness.com/post/923/create-a-simple-infinite-carousel-with-jquery
虽然这具有无限滚动 slider 的预期效果,但我无法弄清楚如何使跳转导航正常工作,在我看来这大大影响了网站的美感......但是什么时候,客户永远是对的,是吗?
$(function() {
//rotation speed and timer
var speed = 5000;
var run = setInterval('rotate()', speed);
//grab the width and calculate left value\
var screenWidth = $(window).width();
$("ul.slides li").css("width",screenWidth);
$("ul.slides li").width(screenWidth);
var fullWidth = $('ul.slides li').size() * $('ul.slides li').width();
$('ul.slides').css('width', fullWidth);
var item_width = $('ul.slides li').width();
var left_value = item_width * (-1);
//move the last item before first item, just in case user click prev button
$('ul.slides li:first').before($('ul.slides li:last'));
$('ul.slides li:first').before($('ul.slides li:last'));
//set the default item to the correct position
$('ul.slides').css({'left' : left_value});
//if user clicked on prev button
$('a.controls.left').click(function() {
//get the right position
var left_indent = parseInt($('ul.slides').css('left')) + item_width;
//slide the item
$('ul.slides').animate({'left' : left_indent}, 1000,function(){
//move the last item and put it as first item
$('ul.slides li:first').before($('ul.slides li:last'));
//set the default item to correct position
$('ul.slides').css({'left' : left_value});
});
//cancel the link behavior
return false;
});
//if user clicked on next button
$('a.controls.right').click(function() {
//get the right position
var left_indent = parseInt($('ul.slides').css('left')) - item_width;
//slide the item
$('ul.slides').animate({'left' : left_indent}, 1000, function () {
//move the first item and put it as last item
$('ul.slides li:last').after($('ul.slides li:first'));
//set the default item to correct position
$('ul.slides').css({'left' : left_value});
});
//cancel the link behavior
return false;
});
//if mouse hover, pause the auto rotation, otherwise rotate it
$('ul.slides').hover(
function() {
clearInterval(run);
},
function() {
run = setInterval('rotate()', speed);
}
);
});
//a simple function to click next link
//a timer will call this function, and the rotation will begin :)
function rotate() {
var item_width = $('ul.slides li').width();
var left_value = item_width * (-1);
//get the right position
var left_indent = parseInt($('ul.slides').css('left')) - item_width;
//slide the item
$('ul.slides').animate({'left' : left_indent}, 1000, function () {
//move the first item and put it as last item
$('ul.slides li:last').after($('ul.slides li:first'));
//set the default item to correct position
$('ul.slides').css({'left' : left_value});
});
}
关于jquery - 如何制作无限滚动的图像 slider ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11860895/
我正在学习如何使用Nokogiri,根据这段代码我遇到了一些问题:require'rubygems'require'mechanize'post_agent=WWW::Mechanize.newpost_page=post_agent.get('http://www.vbulletin.org/forum/showthread.php?t=230708')puts"\nabsolutepathwithtbodygivesnil"putspost_page.parser.xpath('/html/body/div/div/div/div/div/table/tbody/tr/td/div
总的来说,我对ruby还比较陌生,我正在为我正在创建的对象编写一些rspec测试用例。许多测试用例都非常基础,我只是想确保正确填充和返回值。我想知道是否有办法使用循环结构来执行此操作。不必为我要测试的每个方法都设置一个assertEquals。例如:describeitem,"TestingtheItem"doit"willhaveanullvaluetostart"doitem=Item.new#HereIcoulddotheitem.name.shouldbe_nil#thenIcoulddoitem.category.shouldbe_nilendend但我想要一些方法来使用
关闭。这个问题是opinion-based.它目前不接受答案。想要改进这个问题?更新问题,以便editingthispost可以用事实和引用来回答它.关闭4年前。Improvethisquestion我想在固定时间创建一系列低音和高音调的哔哔声。例如:在150毫秒时发出高音调的蜂鸣声在151毫秒时发出低音调的蜂鸣声200毫秒时发出低音调的蜂鸣声250毫秒的高音调蜂鸣声有没有办法在Ruby或Python中做到这一点?我真的不在乎输出编码是什么(.wav、.mp3、.ogg等等),但我确实想创建一个输出文件。
给定这段代码defcreate@upgrades=User.update_all(["role=?","upgraded"],:id=>params[:upgrade])redirect_toadmin_upgrades_path,:notice=>"Successfullyupgradeduser."end我如何在该操作中实际验证它们是否已保存或未重定向到适当的页面和消息? 最佳答案 在Rails3中,update_all不返回任何有意义的信息,除了已更新的记录数(这可能取决于您的DBMS是否返回该信息)。http://ar.ru
我在我的项目目录中完成了compasscreate.和compassinitrails。几个问题:我已将我的.sass文件放在public/stylesheets中。这是放置它们的正确位置吗?当我运行compasswatch时,它不会自动编译这些.sass文件。我必须手动指定文件:compasswatchpublic/stylesheets/myfile.sass等。如何让它自动运行?文件ie.css、print.css和screen.css已放在stylesheets/compiled。如何在编译后不让它们重新出现的情况下删除它们?我自己编译的.sass文件编译成compiled/t
我脑子里浮现出一些关于一种新编程语言的想法,所以我想我会尝试实现它。一位friend建议我尝试使用Treetop(Rubygem)来创建一个解析器。Treetop的文档很少,我以前从未做过这种事情。我的解析器表现得好像有一个无限循环,但没有堆栈跟踪;事实证明很难追踪到。有人可以指出入门级解析/AST指南的方向吗?我真的需要一些列出规则、常见用法等的东西来使用像Treetop这样的工具。我的语法分析器在GitHub上,以防有人希望帮助我改进它。class{initialize=lambda(name){receiver.name=name}greet=lambda{IO.puts("He
我正在寻找执行以下操作的正确语法(在Perl、Shell或Ruby中):#variabletoaccessthedatalinesappendedasafileEND_OF_SCRIPT_MARKERrawdatastartshereanditcontinues. 最佳答案 Perl用__DATA__做这个:#!/usr/bin/perlusestrict;usewarnings;while(){print;}__DATA__Texttoprintgoeshere 关于ruby-如何将脚
Rackup通过Rack的默认处理程序成功运行任何Rack应用程序。例如:classRackAppdefcall(environment)['200',{'Content-Type'=>'text/html'},["Helloworld"]]endendrunRackApp.new但是当最后一行更改为使用Rack的内置CGI处理程序时,rackup给出“NoMethodErrorat/undefinedmethod`call'fornil:NilClass”:Rack::Handler::CGI.runRackApp.newRack的其他内置处理程序也提出了同样的反对意见。例如Rack
在选择我想要运行操作的频率时,唯一的选项是“每天”、“每小时”和“每10分钟”。谢谢!我想为我的Rails3.1应用程序运行调度程序。 最佳答案 这不是一个优雅的解决方案,但您可以安排它每天运行,并在实际开始工作之前检查日期是否为当月的第一天。 关于ruby-如何每月在Heroku运行一次Scheduler插件?,我们在StackOverflow上找到一个类似的问题: https://stackoverflow.com/questions/8692687/
我有一个对象has_many应呈现为xml的子对象。这不是问题。我的问题是我创建了一个Hash包含此数据,就像解析器需要它一样。但是rails自动将整个文件包含在.........我需要摆脱type="array"和我该如何处理?我没有在文档中找到任何内容。 最佳答案 我遇到了同样的问题;这是我的XML:我在用这个:entries.to_xml将散列数据转换为XML,但这会将条目的数据包装到中所以我修改了:entries.to_xml(root:"Contacts")但这仍然将转换后的XML包装在“联系人”中,将我的XML代码修改为