Мне просто нужна помощь с анимацией.
Код: Выделить всё
function frame() {
$('.images-gallery').css({
'transform': 'translateX('+ -mouseXPerc +'%)'
});
requestAnimationFrame(frame);
}
requestAnimationFrame(frame);
$(document).on('mousemove',function(e){
mouseXPerc = e.pageX/containerWidth*100;
});
Изменить: я не могу использовать переход/анимацию CSS при изменении значения в requestAnimationFrame (каждые 1/30 секунды).
Подробнее здесь: https://stackoverflow.com/questions/372 ... ationframe