两个带有 Easy Slider 1.7 的幻灯片
我正在使用这个 http://cssglobe.com/post /5780/easy-slider-17-numeric-navigation-jquery-slider Easy slider 1.7 可在我的网站上实现一些幻灯片放映。
当只有一张幻灯片时,它可以正常工作。但我需要在网页上的两个不同位置进行幻灯片放映。因此,当我使用下一个/上一个按钮时,两张幻灯片都会向前/向后移动。
我为两个 div 的按钮创建了单独的 ID。此外,这两个 div 具有不同的 ID。
下面的代码调用幻灯片:
在我的 javascript 文件中,我有以下内容:
(function($) {
$.fn.easySlider = function(options){
// default configuration properties
var defaults = {
prevId: 'prevBtn',
prevText: 'Previous',
nextId: 'nextBtn',
prevId1: 'prevBtn1',
nextId1: 'nextBtn1',
nextText: 'Next',
controlsShow: true,
controlsBefore: '',
controlsAfter: '',
controlsFade: true,
firstId: 'firstBtn',
firstText: 'First',
firstShow: false,
lastId: 'lastBtn',
lastText: 'Last',
lastShow: false,
vertical: false,
speed: 800,
auto: false,
pause: 2000,
continuous: false,
numeric: false,
numericId: 'controls'
};
有人可以帮忙吗?
I am using this http://cssglobe.com/post/5780/easy-slider-17-numeric-navigation-jquery-slider
Easy slider 1.7 to achieve some slideshows on my website.
It works as it should, when there's only one slideshow. But I need to slideshows on the webpage at two different places. So, when I use the next/previous button, both slides move forward/backward.
I have created seprated IDs for the buttons of two divs. Also, the two divs have separate IDs.
Below code invokes the slide:
<script type="text/javascript">
$(document).ready(function(){
$("#slide1").easySlider({
auto: true,
continuous: true
});
$("#slide2").easySlider({
auto: true,
continuous: true
});
});
</script>
And in my javascript file, I have the following:
(function($) {
$.fn.easySlider = function(options){
// default configuration properties
var defaults = {
prevId: 'prevBtn',
prevText: 'Previous',
nextId: 'nextBtn',
prevId1: 'prevBtn1',
nextId1: 'nextBtn1',
nextText: 'Next',
controlsShow: true,
controlsBefore: '',
controlsAfter: '',
controlsFade: true,
firstId: 'firstBtn',
firstText: 'First',
firstShow: false,
lastId: 'lastBtn',
lastText: 'Last',
lastShow: false,
vertical: false,
speed: 800,
auto: false,
pause: 2000,
continuous: false,
numeric: false,
numericId: 'controls'
};
Can anyone help please?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)