« MediaWiki:Common.js » : différence entre les versions

De Wiki The-West FR
Aller à la navigation
Aucun résumé des modifications
(Annulation des modifications 61819 de Padawan (discussion))
Ligne 6 : Ligne 6 :
var parent_top = $('.mycontainer:hover').offset().top;
var parent_top = $('.mycontainer:hover').offset().top;
var w = e.pageX;
var w = e.pageX;
width = w + 20 - parent_left;
if (e.clientX < ($(window).width())/2){
width = w + 20 - parent_left;
} else {
width = w - 60 - $('.popup_window').width() - parent_left;
}
var h = e.pageY;
var h = e.pageY;
height = h + 10 - parent_top;
var h2 = $('.popup_window').height();
var h3 =$(window).height();
if (e.clientY < (h3/2)){
height = h + 10 - parent_top;
if (e.clientY + h2 + 30 > h3) height = h + (h3-e.clientY) - h2 - 30 - parent_top;
} else {
height = h - 40 - h2 - parent_top;
if (e.clientY - h2 < 0) height = h - e.clientY - parent_top;
}
$('.popup_window:visible').css({top: height, left: width});
$('.popup_window:visible').css({top: height, left: width});
}
}
});
});

Version du 16 juillet 2016 à 09:48

$(document).mousemove(function(e){
	if ($('.popup_window:visible').length!==0){
		var width;
		var height;
		var parent_left = $('.mycontainer:hover').offset().left;
		var parent_top = $('.mycontainer:hover').offset().top;
		var w = e.pageX;
		if (e.clientX < ($(window).width())/2){
			width = w + 20 - parent_left;
		} else {
			width = w - 60 - $('.popup_window').width() - parent_left;
		}
		var h = e.pageY;
		var h2 = $('.popup_window').height();
		var h3 =$(window).height();
		if (e.clientY < (h3/2)){
			height = h + 10 - parent_top;
			if (e.clientY + h2 + 30 > h3) height = h + (h3-e.clientY) - h2 - 30 - parent_top;
		} else {
			height = h - 40 - h2 - parent_top;
			if (e.clientY - h2 < 0) height = h - e.clientY - parent_top;
		}
		$('.popup_window:visible').css({top: height, left: width});
	}
});