一页上有多个 Jquery 滑块
我正在使用 jquery 插件 slides 来为我的滑块提供动力。我希望我的页面上有 3 个滑块,但始终只显示一个。我有三个按钮可以在滑块之间循环。以下是我的按钮的 html 和 jquery:
HTML
<ul class="tabs">
<li><a href="#tab1">Slider 1</a></li>
<li><a href="#tab2">Slider 2</a></li>
<li><a href="#tab3">Slider 3</a></li>
</ul>
JQUERY
$(".tab_content").hide();
$("ul.tabs li:first").addClass("active").show();
$(".tab_content:first").show();
$("ul.tabs li").click(function() {
$("ul.tabs li").removeClass("active");
$(this).addClass("active");
$(".tab_content").slideUp(600);
var activeTab = $(this).find("a").attr("href");
$(activeTab).fadeIn(3500);
return false;
});
您可以在此处查看该页面的工作演示: http://vitaminjdesign.com/example/examples/Standard/index.html
如您所见,它有效,但效果不佳。单击时隐藏每个滑块的 jquery 可以工作,但我觉得有一个更好的解决方案。页面加载时,所有三个滑块都正在加载(两个隐藏)。这是一个好的做法吗?
有没有比我使用它的方式更好的方法来处理三个滑块?或者也许您有一些提示或技巧可以使幻灯片之间的转换更加清晰和更好?提前致谢。
I am using the jquery plugin, slides to power my slider. I want to have 3 sliders on my page, only one showing at all times. I have three buttons which cycle through the sliders. THe following is the html and jquery for my buttons:
HTML
<ul class="tabs">
<li><a href="#tab1">Slider 1</a></li>
<li><a href="#tab2">Slider 2</a></li>
<li><a href="#tab3">Slider 3</a></li>
</ul>
JQUERY
$(".tab_content").hide();
$("ul.tabs li:first").addClass("active").show();
$(".tab_content:first").show();
$("ul.tabs li").click(function() {
$("ul.tabs li").removeClass("active");
$(this).addClass("active");
$(".tab_content").slideUp(600);
var activeTab = $(this).find("a").attr("href");
$(activeTab).fadeIn(3500);
return false;
});
You can view a working demo of the page here: http://vitaminjdesign.com/example/examples/Standard/index.html
As you can see, it works, but not well. The jquery that hides each slider on click works but I feel like there is a much better solution. On page load, all three sliders are loading (two hidden). Is this an OK practice?
Is there a better way to handle three sliders than the way I am using it? Or perhaps you have some tips or tricks to make this a lot cleaner and better transitioning between the slides? Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
加载隐藏在页面中的内容是完全可以的,只要它不是需要永远加载的内容。
但在这种情况下,我可能会考虑使用一个滑块,然后单击 http:// 加载滑块容器区域内的图像api.jquery.com/load/ 请注意,您可以通过添加带有
id
的额外元素来加载一个文档中的内容(如 jquery api 页面所示)。我想我不确定你的滑块如何处理额外的容器。这样,我相信您应该能够使用一个滑块并加载该滑块内的所有图像,而不会混淆滑块,而不是加载一个滑块内的所有图像并隐藏这些图像..这应该会混淆大多数滑块。
Loading content hidden into the page is quite ok as long as its not something that will take forever to load.
But in this case i might consider using one slider and just loading the images inside the slider container area on click http://api.jquery.com/load/ Note that you can load the content from within one document ( shown in jquery api page ) by adding extra elements with
id
's. Thought im not sure how your slider handles extra containers.That way i believe you should be able to use one slider and load all the images inside that one without confusing the slider as oppose to loading all the images inside one slider and hiding those.. which should confused most sliders.
使用 Jquery 的 scrollTo 导致使用以下 jquery 的解决方案:
实时查看:
http://vitaminjdesign.com/example/examples/Standard/index.htmlUsing Jquery's scrollTo led to the solution with the following jquery:
view it live:
http://vitaminjdesign.com/example/examples/Standard/index.html