(function() {
var mX, mY, distance,
$distance = $('#distance span'),
$element = $('#element');
function calculateDistance(elem, mouseX, mouseY) {
return Math.floor(Math.sqrt(Math.pow(mouseX - (elem.offset().left+(elem.width()/2)), 2) + Math.pow(mouseY - (elem.offset().top+(elem.height()/2)), 2)));
}
$(document).mousemove(function(e) {
mX = e.pageX;
mY = e.pageY;
distance = calculateDistance($element, mX, mY);
$distance.text(distance);
});
})();
Comments
@omnixima - Wed May 17 2023 05:19:52 GMT+0000 (Coordinated Universal Time)if (window.matchMedia('(max-width: 767px)').matches) { var fixer = $("#header").height(); $('html,body').animate({scrollTop: $('.hidden-item[data-uid="' + dataUID + '"]').offset().top-fixer}, 500); }