Показать сообщение отдельно
  #1 (permalink)  
Старый 14.02.2014, 00:04
Новичок на форуме
Отправить личное сообщение для skuty Посмотреть профиль Найти все сообщения от skuty
 
Регистрация: 28.01.2014
Сообщений: 9

Помогите оптимизировать код.
Добрый вечер.
Помогите оптимизировать код.. я новичек.. )

$('#work_item1').click(function(){
          $('#add_block').load('/portfolio-list.html #work1 > *',function() {
            $(this).parents('.grey').removeClass('animated_mid fadeInDown');
            $(this).parents('.grey').addClass('animated_mid fadeInDown').css({'display' : 'block'});
            $('.add_block_slider').owlCarousel({   
                autoPlay: 3000, //Set AutoPlay to 3 seconds
                navigation : false,
                pagination: true,
                items : 1     
                });
                $('.item').mouseover(function(){
                $(this).find('.fullinfo').css({'display' : 'block'});
                });
                $('.item').mouseleave(function(){
                $(this).find('.fullinfo').css({'display' : 'none'});
                });
            $('.close_work_item').click(function(){
              $(this).css({'color' : 'red'});
              $(this).parents('#add_block').empty();
            });
          });
        });

      $('#work_item2').click(function(){
          $('#add_block').load('/portfolio-list.html #work2 > *',function() {
            $(this).parents('.grey').removeClass('animated_mid fadeInDown');
            $(this).parents('.grey').addClass('animated_mid fadeInDown').css({'display' : 'block'});
            $('.add_block_slider').owlCarousel({   
                autoPlay: 3000, //Set AutoPlay to 3 seconds
                navigation : false,
                pagination: true,
                items : 1     
                });
                $('.item').mouseover(function(){
                $(this).find('.fullinfo').css({'display' : 'block'});
                });
                $('.item').mouseleave(function(){
                $(this).find('.fullinfo').css({'display' : 'none'});
                });
            $('.close_work_item').click(function(){
              $(this).css({'color' : 'red'});
              $(this).parents('#add_block').empty();
            });
          });
        });

Последний раз редактировалось skuty, 14.02.2014 в 00:06.
Ответить с цитированием