BigText Makes Text Big ============================ Requirements ---------------------------- 1. jQuery 1. A block level parent element, with block level children. Examples ---------------------------- ### Normal Usage
BIGTEXT
Makes Text Big
### Using a List (ordered/unordered)
  1. BIGTEXT
  2. Makes Text Big
### Using other block child elements

BIGTEXT

Makes Text Big

### Exempting/Excluding Lines
  1. BIGTEXT
  2. Makes Text Big
### Mix and Match Fonts
  1. BIG TEXT
  2. Makes Text Big
### Using with Custom Font-Face
BIGTEXT
Makes Text Big
### Change the default max font size
BIG
Extra Features ---------------------------- ### Re-BigText on Resize (Responsive BigText) BigText does not implement its own debounced resize event, to reduce duplicate code. However, it does search for existing implementations. For example, [Ben Alman's Throttle/Debounce plugin](https://github.com/cowboy/jquery-throttle-debounce) or [Louis-Remi Babe's SmartResize](https://github.com/lrbabe/jquery-smartresize/), in that order. If no debounced plugin is found, BigText will bind to the native resize event. Common Problems ---------------------------- ### Lines Wrapping Pre-BigText The starting font-size must be small enough to guarantee that each individual line is not wrapping pre-BigText. Adjust the amount of text per line, or set the starting font size using the example below. #### Change the default min (starting) font size
This is a really long line, that may be too long since it might wrap.
Releases ---------------------------- * `v1.0` Initial release * `v1.1` Added line exempt feature. * `v1.2` Responsive BigText resizes with media queries and resize events (optionally debounced).