This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| p.clip { | |
| white-space: nowrap; /* Запрещаем перенос строк */ | |
| overflow: hidden; /* Обрезаем все, что не помещается в область */ | |
| background: #fc0; /* Цвет фона */ | |
| padding: 5px; /* Поля вокруг текста */ | |
| text-overflow: ellipsis; /* Добавляем многоточие */ | |
| } | |
| //Opera с версии 9.0 до версии 11.0 использует нестандартное свойство -o-text-overflow. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $(document).ready(function(){ | |
| $('.accordion__trigger').on('click', function(e){ | |
| e.preventDefault(); | |
| var $this = $(this), | |
| item = $this.closest('.accordion__item'), | |
| list = $this.closest('.accordion__list'), | |
| items = list.find('.accordion__item'), | |
| content = item.find('.accordion__inner'), | |
| otherContent = list.find('.accordion__inner'), | |
| duration = 300; |