JSFiddle - React, Tailwind, and code Playground
HTML
<div id="bokse1"></div>
<div id="bokse2"></div>
<div id="Karusell">
CSS
.nextButtonFalse{display:none;}
.prevButtonFalse{display:none;}
#bokse1 {width:20px;height:20px;background-color:blue;}
#bokse2 {width:20px;height:20px;background-color:red;}
#Karusell{width:30px;height:30px;background-color:indigo;display:absolute;}
JavaScript
currentNextClicked = 0;
nextClicked = 0;
$(document).ready(function() {
$("#bokse1").click(function() {
if (nextClicked != 2)
$("#Karusell").animate({
marginLeft: ["+=10px", "linear"],
}, 400, function() {
});
});
$('#bokse1').live('click', function(){
if (nextClicked != 2) {
currentNextClicked = nextClicked;
nextClicked = currentNextClicked + 1;
console.log(nextClicked)
}});
});