Hey,
I implemented the horizontal Fullscreen Slider for my home page and wanted to add arrow buttons additional to the circle navigation.
I followed these instructions:
http://laythemeforum.com:4567/topic/814/fullscreen-slider-trouble
but I am using
moveSlideLeft() moveSlideRight()
as mentioned here: https://github.com/alvarotrigo/fullPage.js#moveslideright
The following works fine:
<script>
jQuery(document).on("click", ".stratGoleft", function(event) {
event.stopPropagation();
jQuery.fn.fullpage.moveSlideLeft();
});
</script>
<script>
jQuery(document).on("click", ".stratGoright", function(event) {
event.stopPropagation();
jQuery.fn.fullpage.moveSlideRight();
});
</script>
Additionally I want to go to the last slide when I press the left arrow on the first slide and vice versa. However the following code is not working, regardless of the number I put into moveTo():
<script>
jQuery(document).on("click", ".stratGoright-last", function(event) {
event.stopPropagation();
jQuery.fn.fullpage.moveTo(1);
});
</script>
Does anyone have an idea what might be wrong?