Показать сообщение отдельно
  #6 (permalink)  
Старый 26.11.2015, 19:12
Аватар для рони
Профессор
Отправить личное сообщение для рони Посмотреть профиль Найти все сообщения от рони
 
Регистрация: 27.05.2010
Сообщений: 33,129

Elegant Accordion with jQuery and CSS3
melst,
ок
$(function() {
                var cur;
                $('#accordion > li').click(
                    function () {
                      if(cur != this){
                        cur && $(cur).click();
                        cur = this;
                        var $this = $(this);
                        $this.stop().animate({'width':'480px'},500);
                        $('.heading',$this).stop(true,true).fadeOut();
                        $('.bgDescription',$this).stop(true,true).slideDown(500);
                        $('.description',$this).stop(true,true).fadeIn();
                      }
                    else {
                        cur = null;
                        var $this = $(this);
                        $this.stop().animate({'width':'115px'},1000);
                        $('.heading',$this).stop(true,true).fadeIn();
                        $('.description',$this).stop(true,true).fadeOut(500);
                        $('.bgDescription',$this).stop(true,true).slideUp(700);
                    }
                    }
                ).eq(1).click(); // 3  2  1  0  первый блок третий
            });
Ответить с цитированием