Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

An Angular2+ directive that autoscale the font size of an element until it fit the upper level container dimension.

License

NotificationsYou must be signed in to change notification settings

thisloke/ng2-fittext

Repository files navigation

An Angular 2+ directive, written in pure TypeScript (without jQuery!), to automatically scale the font size of an element so that it fits within its parent container.

Download via NPMAngularBuild StatusContributions welcomeLicense

Demo

Check out the live demo:ng2-fittext Demo

ng2 fittext example

Installation

Install the library using npm according to your angular version (see table below):

Angularng2-fittextcommand
<= v171.4.3npm i ng2-fittext@1.4.3
>= v182.0.0npm i ng2-fittext@2.0.0

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>  `})exportclassLabelComponent{}

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>  `})exportclassLabelComponent{}

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>  `})exportclassInputBoxComponent{}

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>  `})exportclassInputBoxComponent{}

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.

About

An Angular2+ directive that autoscale the font size of an element until it fit the upper level container dimension.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors8


[8]ページ先頭

©2009-2025 Movatter.jp