1.4.3 • Published 3 months ago

ng2-fittext v1.4.3

Weekly downloads
3,916
License
MIT
Repository
github
Last release
3 months ago

Download via NPM Angular Build Status Contributions welcome License

Demo

Check out the live demo: ng2-fittext Demo

Installation

Install the library using npm:

npm install --save ng2-fittext

Usage

  1. Import the module in your Angular application:
import { Ng2FittextModule } from "ng2-fittext";

@NgModule({
  imports: [Ng2FittextModule]
})
  1. Use the directive in your components:
import { Component } from '@angular/core';

@Component({
  selector: 'label',
  template: `
    <div #container>
      <div [fittext]="true" [activateOnResize]="true" [container]="container">Bla bla bla...</div>
    </div>
  `
})
export class LabelComponent {}

Examples

Fit to the parent element (works if you have a variable number of elements between your element and its parent):

import { Component } from '@angular/core';

@Component({
  selector: 'label',
  template: `
    <div>
      <div [fittext]="true" [activateOnResize]="true">Bla bla bla...</div>
    </div>
  `
})
export class LabelComponent {}

NEW! Support for auto-resize input box:

import { Component } from '@angular/core';

@Component({
  selector: 'inputbox',
  template: `
    <div #container>
      <input [fittext]="true" [activateOnResize]="true" [container]="container" [activateOnInputEvents]="true">
    </div>
  `
})
export class InputBoxComponent {}

NEW! Support for maxFontSize:

import { Component } from '@angular/core';

@Component({
  selector: 'inputbox',
  template: `
    <div>
      <input [fittext]="true" [activateOnResize]="true" [activateOnInputEvents]="true" [minFontSize]="40" [maxFontSize]="100">
    </div>
  `
})
export class InputBoxComponent {}

Input Parameters:

ParameterDescriptionValues
fittextDirective selectortrue/false
containerThe container to fit (if not present it fits to the parent container by default)ElementRef
activateOnResizeEnable/disable the autofit on window resizetrue or false (default false)
activateOnInputEventsEnable/disable the auto-fit in case of input box events (keydown, keyup etc..)true or false (default false)
maxFontSizeMaximum font sizeNumber (default is 1000)
!deprecated! useMaxFontSizeUse max font size if is trueDeprecated!
minFontSizeMinimum font sizeNumber (default is 7)
modelToWatchPass model to watch; when this model changes, font size is automatically recalculatedAny type of model

Output Parameters:

ParameterDescriptionValues
fontSizeChangedCurrent font sizestring

Development

Want to contribute? Great! Simply, clone the repository!

I created this library because I always spent too much time solving this problem and didn't find anything on the web (as of 13/03/2017) that does this without jQuery and is easily integrable in Angular 2+. While it might not be the best implementation, it gets the job done.

Todos

  • Write tests
  • Find a performant algorithm to find the font size that fits the container better

License

MIT

Lorenzo I.

1.4.3

3 months ago

1.4.2

3 months ago

1.4.1

3 months ago

1.3.2

3 months ago

1.4.0

3 months ago

1.3.1

3 months ago

1.3.0

2 years ago

1.2.12

4 years ago

1.2.11

4 years ago

1.2.9

4 years ago

1.2.10

4 years ago

1.2.8

4 years ago

1.2.7

5 years ago

1.2.6

5 years ago

1.2.5

5 years ago

1.2.4

5 years ago

1.2.3

5 years ago

1.2.2

5 years ago

1.2.1

5 years ago

1.2.0

5 years ago

1.1.1

6 years ago

1.1.0

6 years ago

1.0.24

7 years ago

1.0.23

7 years ago

1.0.22

7 years ago

1.0.21

7 years ago

1.0.20

7 years ago

1.0.19

7 years ago

1.0.18

7 years ago

1.0.17

7 years ago

1.0.16

7 years ago

1.0.15

7 years ago

1.0.14

7 years ago

1.0.13

7 years ago

1.0.12

7 years ago

1.0.11

7 years ago

1.0.10

7 years ago

1.0.9

7 years ago

1.0.8

7 years ago

1.0.7

7 years ago

1.0.6

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago