Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to create a "show more" button and specify how many lines of text can be initially shown

Tags:

I'm looking for a way to create a slide out 'show more' feature on my responsive site, which cuts off after two lines of a paragraph.

I've achieved this before with a static website, by applying a set height to the container and using overflow: hidden, and then animating the height of the container.

But being responsive, the container squashes the text at different browser widths, so the text might take up more/less room. Also there may be different content above the paragraph each time pushing it down. So the setting height might not cover two lines exactly.

Please check out this jsFiddle: http://jsfiddle.net/XVAzU/ if you need to demonstrate.

So I need to cut off after two lines of the paragraph, no matter what width the container is or what comes before or after that paragraph.

Thanks for looking!

like image 505
shrewdbeans Avatar asked Sep 06 '12 20:09

shrewdbeans


People also ask

How do you implement a Show More button?

How to implement a show more button. You can implement a show more button by using amp-list with additional load-more attribute set to option manual . The optional load-more-bookmark attribute specifies a field name in the returned data that will give the url of the next items to load.

How do you make a button expand with text?

Set a padding to the container, it will make it larger depending on how much text is added. For example: padding: 4px 10px; So in your case, remove the width from your <a> selector and add the padding.

How do you show buttons in line?

If you have multiple buttons that should sit side-by-side on the same line, add the data-inline="true" attribute to each button. This will style the buttons to be the width of their content and float the buttons so they sit on the same line.


1 Answers

Starting from your fiddle and wrapped the content into a <div> with a default class of content, used for selection and a class called hideContent which will be swapped with showContent when clicking the show more/show less link.

I also removed the <p> the text was in. The text is now within the content-div and we are also now able to apply correct height and line-height settings.

HTML:

<div class="text-container">     <h1>Title goes here</h1>     <h2>Subtitle</h2>     <div class="content hideContent">         Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.         <p>Some more text</p>         <ul>             <li>Some more text</li>             <li>Some more text</li>             <li>Some more text</li>         </ul>     </div>     <div class="show-more">         <a href="#">Show more</a>     </div> </div>​ 

CSS:

.hideContent {     overflow: hidden;     line-height: 1em;     height: 2em; }  .showContent {     line-height: 1em;     height: auto; } 

I'm assuming setting the line-height will ensure it is the same in all browsers. I'm not 100% certain on that though.

I attached a click event to the "show more" link which switches the classes on the div using jQueryUI switchClass():

$(".show-more a").on("click", function() {     var $this = $(this);      var $content = $this.parent().prev("div.content");     var linkText = $this.text().toUpperCase();          if(linkText === "SHOW MORE"){         linkText = "Show less";         $content.switchClass("hideContent", "showContent", 400);     } else {         linkText = "Show more";         $content.switchClass("showContent", "hideContent", 400);     };      $this.text(linkText); });​ 

JsFiddle Demo - show more / show less and applying line-height and animation

$(".show-more a").on("click", function() {    var $this = $(this);    var $content = $this.parent().prev("div.content");    var linkText = $this.text().toUpperCase();      if (linkText === "SHOW MORE") {      linkText = "Show less";      $content.switchClass("hideContent", "showContent", 400);    } else {      linkText = "Show more";      $content.switchClass("showContent", "hideContent", 400);    };      $this.text(linkText);  });
div.text-container {    margin: 0 auto;    width: 75%;  }    .hideContent {    overflow: hidden;    line-height: 1em;    height: 2em;  }    .showContent {    line-height: 1em;    height: auto;  }    .showContent {    height: auto;  }    h1 {    font-size: 24px;  }    p {    padding: 10px 0;  }    .show-more {    padding: 10px 0;    text-align: center;  }
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.js"></script>  <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script>    <div class="text-container">    <h1>Title goes here</h1>    <h2>Subtitle</h2>    <div class="content hideContent">      Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata      sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.      <p>Some more text</p>      <ul>        <li>Some more text</li>        <li>Some more text</li>        <li>Some more text</li>      </ul>    </div>    <div class="show-more">      <a href="#">Show more</a>    </div>  </div>

The above code is an example only but should get you started into the right direction.

like image 186
Nope Avatar answered Nov 07 '22 05:11

Nope