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

De Wiki The-West FR
Aller à la navigation
Aucun résumé des modifications
Aucun résumé des modifications
Ligne 1 : Ligne 1 :
$(document).mousemove(function(e){
$(document).mousemove(function(e){
if ($('.popup_window:visible').length!==0){
if ($('.popup_window:visible').length!==0){
console.log(e);
var width;
var width;
var height;
var height;

Version du 16 juillet 2016 à 19:38

$(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 - 20 - $('.popup_window:visible').outerWidth() - parent_left;
		}
		var h = e.pageY;
		var h2 = $('.popup_window:visible').outerHeight();
		var h3 =$(window).height();
		if (e.clientY < (h3/2)){
			height = h + 20 - parent_top;
			if (e.clientY + h2 - 20 > h3) height = h - e.clientY - parent_top + h3 - h2 + 40;
		} else {
			height = h - h2 - parent_top;
			if (e.clientY - h2 < 35) height = h - e.clientY - parent_top + 35;
		}
		$('.popup_window:visible').css({top: height, left: width});
	}
});
if ($('#navbar').length!==0){
	$('#navbar a').removeAttr( "title" )
}