Показать сообщение отдельно
  #13 (permalink)  
Старый 14.11.2015, 17:36
Аватар для рони
Профессор
Отправить личное сообщение для рони Посмотреть профиль Найти все сообщения от рони
 
Регистрация: 27.05.2010
Сообщений: 33,109

barakuda,
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8" >
    <script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
    <style>
    span {
        background-color: dimgrey;
        color: white;
        border-radius: 3px;
        cursor: pointer;
        display:  inline-block;
         width: 40px;
    }
    span.active{
      margin-top: -10px;
      position: absolute;
    }
    span + input{
      display: none;
    }
    span.active + input{
      display:  inline-block; margin-top: 10px;
    }
    p{
       position:  relative;
    }

    </style>
</head>
<body>
<p>My family <span>to at</span><input> big. Lorem ipsum dolor sit amet, con <span>to at</span><input> adipisicing elit. Quod similique
    est, autem
    <span>to at</span><input> voluptatem ipsam error eius rumquam non soluta aut impedit dolor magnam, exerci- tationem
    blanditiis voluptatibus praesentium id, recusandae. </p>


<script>
  $('span').click(function (event) {
         $(this).toggleClass('active')

    })


</script>

</body>

</html>

Последний раз редактировалось рони, 14.11.2015 в 18:18.
Ответить с цитированием