Javascript.RU

Создать новую тему Ответ
 
Опции темы Искать в теме
  #1 (permalink)  
Старый 25.12.2009, 10:10
Новичок на форуме
Отправить личное сообщение для Xane Посмотреть профиль Найти все сообщения от Xane
 
Регистрация: 25.12.2009
Сообщений: 1

Конфликт с Drag&Drop с PositionMouse
точнее стоят 2 функции, одна на перетаскивания елементов (например дивов) с помощью drag&drop а вторая функция на отображение подсказок при наведении мышки (с учетом координат мышки), дак вот - проблема вся в том что при перетастивании чего либо за счёт первой функции, у второй координаты мышки перестают работать и отображается всегда в одном месте не зависимо от мышки.

первая функция:
function utGetStyle(oElm,strCssRule)
{
	var strValue="";

	if(document.defaultView&&document.defaultView.getComputedStyle)
	{
		var css=document.defaultView.getComputedStyle(oElm, null);
		strValue=css?css.getPropertyValue(strCssRule):null;
	}
	else if(oElm.currentStyle)
	{
		strCssRule=strCssRule.replace(/\-(\w)/g,function(strMatch, p1){ return p1.toUpperCase(); });
		strValue=oElm.currentStyle[strCssRule];
	}

	return strValue;
}

var utDragzone=true;

function utDraggable(el,class1,class2)
{
	var xDelta=0,yDelta=0;
	var xStart=0,yStart=0;

	function enddrag()
	{
		el.className=class2;
		document.onmouseup=null;
		document.onmousemove=null;
	}

	function drag(e)
	{
		e=e || window.event;
		xDelta=xStart-parseInt(e.clientX);
		yDelta=yStart-parseInt(e.clientY);
		xStart=parseInt(e.clientX);
		yStart=parseInt(e.clientY);
		el.style.top=(parseInt(el.style.top)-yDelta)+'px';
		el.style.left=(parseInt(el.style.left)-xDelta)+'px';
	}

	function md(e)
	{
		if(!utDragzone)
			return false;

		el.className=class1;
		e=e||window.event;
		xStart=parseInt(e.clientX);
		yStart=parseInt(e.clientY);
		el.style.top=parseInt(utGetStyle(el,'top'))+'px';
		el.style.left=parseInt(utGetStyle(el,'left'))+'px';
		document.onmouseup=enddrag;
		document.onmousemove=drag;
		return false;
	}

	el.onmousedown=md;
}


вторая:
var utTooltip=function(){
	var id = 'tt';
	var top = -10;
	var left = 5;
	var maxw = 300;
	var speed = 10;
	var timer = 10;
	var endalpha = 95;
	var alpha = 0;
	var tt,t,c,b,h;
	var ie = document.all ? true : false;
	return{
		show:function(v,w){
			if(tt == null){
				tt = document.createElement('div');
				tt.setAttribute('id',id);
				t = document.createElement('div');
				t.setAttribute('id',id + 'top');
				c = document.createElement('div');
				c.setAttribute('id',id + 'cont');
				b = document.createElement('div');
				b.setAttribute('id',id + 'bot');
				tt.appendChild(t);
				tt.appendChild(c);
				tt.appendChild(b);
				document.body.appendChild(tt);
				tt.style.opacity = 0;
				tt.style.filter = 'alpha(opacity=0)';
				document.onmousemove = this.pos;
			}
			tt.style.display = 'block';
			c.innerHTML = v;
			tt.style.width = w ? w + 'px' : 'auto';
			if(!w && ie){
				t.style.display = 'none';
				b.style.display = 'none';
				tt.style.width = tt.offsetWidth;
				t.style.display = 'block';
				b.style.display = 'block';
			}
			if(tt.offsetWidth > maxw){tt.style.width = maxw + 'px'}
			h = parseInt(tt.offsetHeight) + top;
			clearInterval(tt.timer);
			tt.timer = setInterval(function(){utTooltip.fade(1)},timer);
		},
		pos:function(e){
			var u = ie ? event.clientY + document.documentElement.scrollTop : e.pageY;
			var l = ie ? event.clientX + document.documentElement.scrollLeft : e.pageX;
			tt.style.top = (u - h) + 'px';
			tt.style.left = (l + left) + 'px';
		},
		fade:function(d){
			var a = alpha;
			var forie = false;
			if((a != endalpha && d == 1) || (a != 0 && d == -1)){
				var i = speed;
				if(endalpha - a < speed && d == 1){
					i = endalpha - a;
					forie = true;
				}else if(alpha < speed && d == -1){
					i = a;
				}
				alpha = a + (i * d);
				tt.style.opacity = alpha * .01;

				if(forie)
					tt.style.filter = 'alpha(opacity=' + alpha + ')';
			}else{
				clearInterval(tt.timer);
				if(d == -1){tt.style.display = 'none'}
			}
		},
		hide:function(){
			clearInterval(tt.timer);
			tt.timer = setInterval(function(){utTooltip.fade(-1)},timer);
		}
	};
}();


CSS для второй:
Код:
.hotspot { padding-bottom:1px; border-bottom:1px dotted #900; cursor:pointer; }
#tt { position:absolute; z-index:3; display:block; background:url(images/tt_left.gif) top left no-repeat}
#tttop { display:block; height:5px; margin-left:5px; background:url(images/tt_top.gif) top right no-repeat; overflow:hidden}
#ttcont { font:9 tahoma,arial; display:block; padding:2px 12px 3px 7px; margin-left:5px; background:#666; color:#fff}
#ttbot { display:block; height:5px; margin-left:5px; background:url(images/tt_bottom.gif) top right no-repeat; overflow:hidden}
как решить траблу? мои подозрения что надо как то обновить данные мышки, но как я хз.
Ответить с цитированием
Ответ


Опции темы Искать в теме
Искать в теме:

Расширенный поиск


Похожие темы
Тема Автор Раздел Ответов Последнее сообщение
Конфликт iframe и обработчиков onmousemove mailman Элементы интерфейса 5 18.10.2009 08:26
Drag&Drop в JavaScript Ruska882009 Общие вопросы Javascript 2 31.03.2009 10:39
prototype.js конфликт с FlashGet mexxus AJAX и COMET 10 30.10.2008 18:31
Динамически создаваемые компоненты Drag&Drop BEER_HUNTER Элементы интерфейса 6 22.08.2008 13:32
Теряется event при перемещении объекта (Drag&Drop) seagor Events/DOM/Window 16 25.07.2007 01:28