Показать сообщение отдельно
  #1 (permalink)  
Старый 28.12.2011, 17:18
Новичок на форуме
Отправить личное сообщение для lemad Посмотреть профиль Найти все сообщения от lemad
 
Регистрация: 28.12.2011
Сообщений: 2

Центрирование. Выручайте.
Добрый день!

Я в java не очень, мягко говоря. Суть проблемы: при нажатии на кнопку "к корзину", появляется картинка (по центру экрана). Только вот в Опере картинка появляется где угодно, но только не поцентру. Подскажите, что поправить в коде. Заранее, спасибо!
function setPosition()
{
    var Y = getClientCenterY() - 98;
	if ( window.opera ) Y = ( Y * 0.6 ).toFixed(0);

	document.getElementById('add_to_cart').style.left = ( getClientCenterX() - 92 ) + 'px';
	document.getElementById('add_to_cart').style.top = Y + 'px';
	document.getElementById('add_to_cart').style.display = 'block';
	document.getElementById('add_to_cart').style.position = 'absolute';

	window.setTimeout(function() {closePosition()}, 3000);
}

function closePosition() {

	document.getElementById('add_to_cart').style.left = -1000 + 'px';
	document.getElementById('add_to_cart').style.top = -1000 + 'px';
	document.getElementById('add_to_cart').style.display = 'none';
}

function getBodyScrollTop()
{
    return self.pageYOffset || (document.documentElement && document.documentElement.scrollTop) || (document.body && document.body.scrollTop);
}

function getBodyScrollLeft()
{
    return self.pageXOffset || (document.documentElement && document.documentElement.scrollLeft) || (document.body && document.body.scrollLeft);
}

function getClientWidth()
{
  return document.compatMode=='CSS1Compat' && !window.opera?document.documentElement.clientWidth:document.body.clientWidth;
}

function getClientHeight()
{
  return document.compatMode=='CSS1Compat' && !window.opera?document.documentElement.clientHeight:document.body.clientHeight;
}

function getClientCenterX()
{
    return parseInt(getClientWidth()/2)+getBodyScrollLeft();
}

function getClientCenterY()
{
    return parseInt(getClientHeight()/2)+getBodyScrollTop();
}

Последний раз редактировалось lemad, 29.12.2011 в 12:08.
Ответить с цитированием