inforesurs-test/public/js/raw/jquery.follow.js

18 строки
390 B
JavaScript
Исходник Постоянная ссылка Обычный вид История

2019-06-22 14:15:33 +00:00
(function ($) {
$.fn.follow = function () {
var $this = $(this);
function follow_mouse(obj) {
$('body').mousemove(function (e, h) {
$(obj).offset({top: e.pageY, left: e.pageX});
$(obj).click(function () {
$('body').off('mousemove')
})
})
}
$this.mouseover(function (e, h) {
follow_mouse(this);
});
};
})(jQuery);