Coder Social home page Coder Social logo

lakshmi-narasimha / ng-text-truncate Goto Github PK

View Code? Open in Web Editor NEW

This project forked from lorenooliveira/ng-text-truncate

0.0 0.0 0.0 224 KB

Simple directive for truncating text in AngularJS apps and toggling the hidden parts of the truncated texts.

License: MIT License

HTML 59.05% JavaScript 40.95%

ng-text-truncate's Introduction

ng-text-truncate

This is a simple, but fully functional, directive for truncating text in angularjs apps. This directive not only truncates your text, but also permits toggling the hidden part of the truncated text.

If you are using ng-text-truncate in a project that already uses Twitter Boostrap, then the toggling elements (i.e. textual links with the texts "More" and "Less") shall inherit Bootstrap's styles for textual links. If you are not using Twitter Boostrap or if you want to customize some aspect of the toggling elements, then you can write your own CSS for the class ngTruncateToggleText.

DEMO 1 (Most of the use cases)

DEMO 2 (Custom CSS)

Usage Instructions

  1. Include the JS file

<script src="angular.min.js"></script>
...
<script src="ng-text-truncate.js"></script>

As usual, include this file after the inclusion of the angular.min.js file.

  1. Import ng-text-truncate in your app

angular.module( "TestApp", [ "ngTextTruncate" ] );
  1. Assign a text to some variable

$scope.longText = "Lorem ipsum dolor sit amet, and a possibly long remaining text.";
  1. Apply the directive to the element where you intend to put your text

Use the cs-truncate attribute to pass the variable holding your text. In the cs-truncate-threshould attribute you should indicate the maximum number of chars to be displayed before truncation. That is, any string bigger than cs-truncate-threshould will be truncated.

<p ng-text-truncate="longText"
   ng-tt-chars-threshold="40"></p>
  1. And...... that's all folks

Now open your HTML and everything should be working as intended.

  1. Ok, but, what are all this directive's features?

By using this directive you can:

  • Truncate your text based on the number of chars to be displayed;
  • Truncate your text based on the number of words to be displayed;
  • Toggle the hidden part of truncated text visible or not;
  • Customize the text of the toggling elements (the defaults are "More" and "Less");
  • If you want/need, you can just truncate the text (i.e., ommit the toggling elements);
  • Take a ride in Bootstrap's styles for the toggling elements;
  • Customize the appearance of the toggling elements by means of a custom CSS class (for the case you don't like Bootstrap's defaults or if you are not using Bootstrap).
  1. Nice. And how to use them?

Take a look at our live demos. There we have clear examples about using each of our features.

DEMO 1 (Most of the use cases)

DEMO 2 (Custom CSS)

Future Improvements

Get in touch if you have ideas for improvements. Bug reports and pull requests are welcome.

ng-text-truncate's People

Contributors

lorenooliveira avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.