Skip to content

Latest commit

 

History

History
31 lines (28 loc) · 779 Bytes

README.md

File metadata and controls

31 lines (28 loc) · 779 Bytes

jQuery Name Badges Plugin

A simple jQuery Plugin for creating name badges.

Example

This plugin turns elements like this:

<div class="name">Bill Gates</div>

Into something like this:
Example0

Usage

With default settings:

$('.name').nameBadge();

Example1

With custom settings:

$('.name').nameBadge({
	border: {
		width: 0
	},
	colors: ['#FAD089', '#FF9C5B', '#F5634A', '#ED303C', '#3B8183'],
	text: '#333',
	margin: 15,
	size: 120
});

Example2