2.2.1 • Published 6 years ago
angular2-letter-avatar v2.2.1
angular2-letter-avatar
letter avatar is angular2 directive. It will generate avatar based on given text
The sources for this package are in (https://github.com/rajan-g/angular2-letter-avatar.git) repo. Please file issues and pull requests against that repo.
Demo Output

Live Demo
Live Demo Site OR Live Demo Site
Install from npm
npm install angular2-letter-avatarcomponent file use like below
import {Component} from 'angular2/core';
import {LetterAvatarDirective} from '../directives/letter-avatar.directive';
@Component({
selector : 'my-app',
directives: [LetterAvatarDirective],
template: `
<avatar [avatardata]="avatarDataSquare"></avatar>
<avatar [avatardata]="avatarDataCircle1"></avatar>
<avatar [avatardata]="avatarDataCircle2"></avatar>`
})
export class AppComponent {
public avatarDataSquare: any = {
size: 100,
// background: '#F39C12', // by default it will produce dynamic colors
fontColor: '#FFFFFF',
border: "2px solid #d3d3d3",
isSquare: true,
text: "Rajan Gunasekaran"
};
public avatarDataCircle1: any = {
size: 100,
// background: '#F39C12', // by default it will produce dynamic colors
fontColor: '#FFFFFF',
border: "2px solid #d3d3d3",
isSquare: false,
text: "Rajan Gunasekaran"
};
public avatarDataCircle2: any = {
size: 100, // default size is 100
// background: '#F39C12', // by default it will produce dynamic colors
fontColor: '#FFFFFF',
border: "2px solid #d3d3d3",
isSquare: false, // if it is true then letter avatar will be in square defaule value is false
text: "Siva", //
fixedColor:true //if you enable true then letter will have same color for ever default value is false
};
}For Test demo
- Download this module
- Run following command
npm install npm start
2.2.1
6 years ago
2.1.1
9 years ago
2.0.8-rc-6
9 years ago
2.0.7
9 years ago
2.0.6
9 years ago
2.0.5
10 years ago
2.0.3
10 years ago
2.0.2
10 years ago
2.0.1
10 years ago
2.0.0
10 years ago
1.0.9
10 years ago
1.0.8
10 years ago
1.0.7
10 years ago
1.0.5
10 years ago
1.0.4
10 years ago
1.0.3
10 years ago
1.0.2
10 years ago
1.0.1
10 years ago
1.0.0
10 years ago