Skip to content

Instantly share code, notes, and snippets.

@gamanox
Created May 13, 2013 22:47
Show Gist options
  • Save gamanox/5572173 to your computer and use it in GitHub Desktop.
Save gamanox/5572173 to your computer and use it in GitHub Desktop.
carrusel
$(".map_cont").carouFredSel({
auto: true,
items : 1,
direction : "left",
scroll : {
items : 1,
easing : "elastic",
duration : 1000,
pauseOnHover : true,
fx : "cover-fade"
},
});
$(".flecha_right").click(function() {
$(".map_cont").trigger("next", 1);
});
$(".flecha_left").click(function() {
$(".map_cont").trigger("prev", 1);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment