Артем БорисовЗнаток (447)
8 лет назад
$('#open').click(function(id) {
var speed = randomInteger(1,3);
if (speed== 1) {
$('#imgdrop').animate({
"marginLeft":"-108%"},1000,function(){
});
console.log('speed1');
} ;
if (speed==2) {
$('#imgdrop').animate({
"marginLeft":"-108%"},1500,0,function(){
});
console.log('speed2');
} ;
if (speed==3){
$('#imgdrop').animate({
"marginLeft":"-108%"},1000,0,function(){
});
console.log('speed3');
};
});