itemslide icon indicating copy to clipboard operation
itemslide copied to clipboard

if "left_sided: true" the "click to slide" doesn't work

Open cgahmann opened this issue 9 years ago • 2 comments

I've tested with "left_sided: true" and the "click to slide" doesn't work.

My code:

<script src="jquery-3.0.0.min.js"></script>
<script src="itemslide.min.js"></script>
<script src="jquery.mousewheel.min.js"></script>
<script>
var carousel;

$(document).ready(function () {
    carousel = $(".images");

    carousel.itemslide({
        left_sided: true
    }); //initialize itemslide

    $(window).resize(function () {
        carousel.reload();
    }); //Recalculate width and center positions and sizes when window is resized
});
</script>

Width default "left_sided: false" everything is fine.

cgahmann avatar Jun 13 '16 08:06 cgahmann

Additionally I have to say: if you show control buttons (like here http://itemslide.github.io/examples/buttons_carousel/), left_sided is activated and lets say 4 items are visible, control buttons trigger first after 4 clicks.

octojoerg avatar Jul 12 '17 11:07 octojoerg

The original bug here is fixed. This is a new one octojoerg

PurHur avatar Jul 30 '17 15:07 PurHur