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

вопрос по hide() и т.п.
Доброго вечера,
у меня возникла следующая проблема. Делаю сайт визитку, и добавляю песвдоэффект )

Возникла следующая проблема, при загрузке, сначало показываеться сайт, потом пропадает и начинаеться псевдоэффект.

Причем в начале работы такого небыло, как начал чето дописывать и т.п. началось это.


Сам код
$(document).ready(function() {
      $('.izumrudniyLogo, .hello, .hotNews').hide();
	  $('#menu, .slogan, .reklama1, .content, .reklama2, .countsBlock').animate({"opacity": "0" },10);
	  var heights = $('.content').height();
	  $('#centrPanel, .hotNews').css({"height" : "0px"});
	  var speed = 100;
	  $('.izumrudniyLogo').show().css({"marginLeft" : "300px", "marginTop" : "300px"});
	  $('.hello').css({"marginLeft" : "320px"})
	.fadeIn(speed*20).fadeOut(500, function(){
	  $('.izumrudniyLogo')
	.animate({"opacity": "0.4" }, speed*4)
	.animate({"opacity": "0.1" }, speed*4)
	.animate({"opacity": "1", "marginLeft" : "0px", "paddingLeft" : "50px", "marginTop" : "10px",}, speed*10, function(){
	  $('#centrPanel').animate({"height" : heights}, speed*20, function(){
	  $('.reklama1, .reklama2').animate({"opacity": "1" },speed*10, function(){
	  $('.slogan, #menu, .content,  .countsBlock').animate({"opacity": "1" },speed*30, function(){
	   $('.hotNews').show().animate({"height" : "330px"}, speed*20)
											 })
											 })
											  })
											   })
	                                            });
      $('.tableBig, .tableSmall, .tableSwim').hide();
	  	                                             }); //end ready


Может кто расскажет новчику, в чем косяки. Спасибо
Ответить с цитированием