Показать сообщение отдельно
  #2 (permalink)  
Старый 16.10.2016, 13:46
Аватар для destus
Профессор
Отправить личное сообщение для destus Посмотреть профиль Найти все сообщения от destus
 
Регистрация: 18.05.2011
Сообщений: 1,207

Rostik,
как вариант...
<style>
        .post{
            width: 500px;
            height: 40px;
            background: #666;
            margin-top: 10px;
            transition: height .5s ease-in;
        }
        .post.active{
            height: 140px;
        }
</style>
<div class="post"></div>
    <div class="post"></div>
    <div class="post"></div>
    <script>
		[].forEach.call(document.querySelectorAll('.post'), function(div){
			div.addEventListener('click', function(){
				this.classList.toggle('active');
			})
		})
    </script>
Ответить с цитированием