这是AnythingSlider的两个资源示例
http://jsfiddle.net/Mottie/Cm479/4398/
http://jsfiddle.net/Mottie/Cm479/4401/
我需要简单的上一个/下一个并暂停播放导航,但对于Anythingslider是外部的。有人可以帮我解决这个问题吗?
Kindest Regards,
朱奈德
答案 0 :(得分:0)
这是一个非常基本的示例(demo),但请尝试使用此HTML
<div id="externalNav">
Goto <a href="#1">One</a> |
<a href="#2">Two</a> |
<a href="#3">Three</a> |
<a href="#4">Four</a> |
<a class="play" href="#play">Play</a>
</div>
和这个脚本
var $s = $('#slider');
$s.anythingSlider({
// If true, builds a list of anchor links to link to each panel
buildNavigation: false,
buildStartStop: false
});
// set up external links
$('#externalNav a').click(function(){
// get slide number (ignore the #)
var slide = $(this).attr('href').substring(1),
// get AnythingSlider data object
slider = $s.data('AnythingSlider');
if (slide === "play") {
// toggle slideshow
slider.startStop( !slider.playing );
// change link text
$('a.play').text( slider.playing ? 'Pause' : 'Play' );
} else {
// go to selected slide
$s.anythingSlider(slide);
}
// prevent link from changing the hash
return false;
});
答案 1 :(得分:0)
查看此示例:http://jsfiddle.net/ycUB6/982/
我认为您可以将onInitialized
参数/函数更改为以下内容:
onInitialized: function(e, slider) {
$("a.next-slide").click(function(){
slider.goForward();
});
$("a.prev-slide").click(function(){
slider.goBack();
});
}
当然,您可以使用下一个/上一个链接上的任何类/ ID。