Jump to content
  • 0

Отображать текст частично. Показывать полностью по нажатию кнопки


unomomento
 Share

Question

На одной странице несколько объемных текстов.

Хотелось бы отображать только анонс от них, а полное содержимое по нажатию на кнопку Показать целиком/Свернуть.

 

Чтоб было понятнее, вот пример http://www.pushe.ru/
При нажатии на кнопку Два слова о фабрике PUSHE открывается див, кнопка меняется на Закрыть.

Только в моем случае, первоначально должна быть видна часть дива, а по кнопке уже полностью.

 

Как это лучше сделать?

 

Спасибо!

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

Можно сделать text-overflow и обрезать текст через overflow. Если есть отдельный текст для анонса, то сперва выводить его, а по нажатию скриптом показывать/прятать блок с полным текстом, и текст анонса аналогично отображать, только в противофазе. Можно ещё сделать, чтоб полный текст аяксом получался при разворачивании, а при сворачивании убирался бы.

Link to comment
Share on other sites

  • 0

Спасибо! Примерно это и нужно.

Но я собрал все один файл, почему-то не работает...

 

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"><html dir="ltr" lang="ru"><head><meta charset="utf-8"><script type="text/javascript">var halfText = $('.spoiler').innerHeight() / 2,    textHeight = $('.spoiler').innerHeight();$('.spoiler').css('height', $('.spoiler').innerHeight() / 2);$('.show-hide').click(function() {    if( $('.spoiler').innerHeight() == halfText ) {        $('.spoiler').animate({ height: textHeight }, 500);        $(this).text('Скрыть');    } else {        $('.spoiler').animate({ height: halfText }, 500);        $(this).text('Показать');    }});</script><style type="text/css">.spoiler {    width: 30%;    overflow: hidden;}</style></head><body><div class="container">    <div class="spoiler">        <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Magni optio provident! Ipsum quibusdam neque amet        sapiente quod libero ducimus ipsa possimus totam voluptatem nemo ex expedita sequi voluptatum rerum corrupti.        Lorem ipsum dolor sit amet, consectetur adipisicing elit. Magni optio provident! Ipsum quibusdam neque amet        sapiente quod libero ducimus ipsa possimus totam voluptate</p>    </div>    <button class="show-hide">Показать</button></div></body></html>
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy