function ani() {
var arr = ["#el_1", "#el_2", "#el_3", "#el_4","#el_5", "#el_6", "#el_7", "#el_8"];
var rand = Math.floor(Math.random() * arr.length);
var i = arr[rand];
if ( i !== b) {
w = $(i).width(),
h = $(i).height(),
zoom = 0.3;
$(i).animate({
width: w+w*zoom,
height: h+h*zoom,
left: "-="+(w*zoom/2),
top: "-="+(h*zoom/2)
},200);
$(i).animate({
width: w,
height: h,
left: "+="+(w*zoom/2),
top: "+="+(h*zoom/2)
},200);
}
else if (i==b){
alert('равно');
}
$(i).removeAttr("style");
var b = i;
}
setInterval('ani()', 500);
SELECT * FROM table ORDER BY id DESC LIMIT 1
function id() {
var last_id = <?php echo $my_last_id; ?>;
$.ajax({
type: 'POST',
url: 'http://ваш сайт.ua/имя файла.php',
data: {last_id:last_id},
success: function(data) {
$("#results").html(data);
},
error: function(xhr, str){
alert('Возникла ошибка: ' + xhr.responseCode);
}
});
}
setInterval(id, 2000);