Skip to content

Instantly share code, notes, and snippets.

@Igosuki
Last active August 29, 2015 14:00
Show Gist options
  • Save Igosuki/95b922bee4b744b20054 to your computer and use it in GitHub Desktop.
Save Igosuki/95b922bee4b744b20054 to your computer and use it in GitHub Desktop.
Merci
$(function() {
$("#fond").attr("src","./images/regions_"+ancre+"00.png");
var slider = $("#slider").slider({
value:0,
min:0,
max:65,
slide: function( event, ui ) {
var nombre = ("0" + ui.value).slice(-2)
$("#fond").attr("src","./images/regions_"+ancre+nombre+".png");
}
});
$('.ui-slider-handle', slider).draggable();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment