if ($(window).width() > 768 && document.getElementById("startScreen")) {
$(document).on('mousemove', function (e) {
var amountMovedX = 100 - 30 * ((e.pageX + 1) / $(document).width());
$('div.startScreen .me').css('transition', '.15s');
me.style.transform = 'translateX(' + amountMovedX + 'px)';
});
};
Спасибо!