FitText + BigText: A Tale of Two Plugins

Earlier this week, @TrentWalton tweeted:

We at @paravelinc happily present to you FitText—a jQuery plugin for inflating web type: http://t.co/1NuQg5z

Naturally, I wondered how it compared to BigText, a plugin of my own creation to Make Text Big. Trent continued:

It’s in the GitHub readme, but I want to recognize BigText from @zachleat as another font sizer for non-fluid sites: http://t.co/dXw607P

I was delighted to get some attribution from Trent, and even more delighted to see their plugin. It’s really a great piece of work. However, his statement that BigText is just for non-fluid sites is not quite accurate. Let’s dive in.

On the surface, BigText and FitText might seem very similar. In fact, they are quite different and approach what might seem to be a similar problem (resizing text to fit a container) in very different ways.

At its simplest, we can boil it down like this: If you’re crafting a specific design with copy that is not going to change, use FitText. If your text is dynamic (maybe user generated), use BigText.

Here’s more detail:

  BigText FitText
Demos BigText Fiddle FitText Fiddle
  Try resizing the demo windows above.
Algorithm Sizes text automatically from a base up to fit the element width, regardless of initial font size. Uses the width of the element and a configurable JavaScript argument (the ratio) to scale text down to smaller widths. This ratio argument must be set manually.
Responsive Design Both plugins work with responsive design techniques, operating correctly with media queries, fluid designs, and window resizing.
Speed Fast Faster
Text Works with user generated text, or any text isn’t cemented at design time. See the BigText Demo Wizard. Requires up front configuration to specific text.
Resize Event Works with existing debounced resize libraries, if they exist on the page. Does not use a debounced resize event.
Unobtrusive CSS and BigText font-sizes are independent of each other. FitText uses your CSS font-size as a maximum font size.
  Don’t forget to set sane CSS font-size defaults when JavaScript isn’t available.
Unit Tested Full Test Suite -

FitText is very lightweight and fast, even considering it doesn’t yet use a debounced resize event. The FitText algorithm is quite beautiful. A huge well done to Paravel.

FitText relies on the fact that there is a linear relationship between font-sizes and element widths. Once you’ve established the ratio between the two, it’s off to the races. In fact, it would probably be technically possible to determine the ratio solely on the initial inner-width of the text and the initial font-size. I’ll have to play around with that approach but if it works it would give an amazing speed improvement to BigText.

font-size = outer-width / configurable-ratio

In a perfect world, BigText and FitText could be combined, to create a mutant auto-text-sizing plugin baby that gives the best of both worlds.

This entry was posted in JavaScript. Bookmark the permalink. Both comments and trackbacks are currently closed.
  • If you found this article useful, you should subscribe to my feed (or get an e-mail). I'm also on Twitter and GitHub.
  • About the Author

    Zach Leatherman is a Professional Front End Engineer. He loves building for the web, and has been contributing to the community through his blog since February 2007. Despite his propensity for software, he has a Bachelors degree in Computer Engineering and is currently on the User Experience Team at Union Pacific Railroad. The views expressed on this website do not represent the views of his employer.

    He enjoys spending time with his beautiful wife Traci and their two Great Danes, Roxie and Ella. They also have a cat, a rabbit, goldfish, and one or more tarantulas. Read more »

5 Comments

  1. Posted May 13, 2011 at 8:01 am | Permalink

    Excellent comparison!
    We actually spent a long time looking at BigText, I think I even forked it at one point :) But in one of those “I’ll just try this” moments FitText was born. I think we only had 2-3 nuance/micro-criticisms of BigText, “speed” as you mentioned being one of them, but I’ll drop those into an Issue over on github and we can think about it over there, so as not to clog your comment feed :)

    I think we should try real hard to have a code baby.

    * worth mentioning: Chris Coyier forked and created a debounced version of FitText within minutes of release, so that’s available if people want it.

  2. Posted August 30, 2011 at 9:40 am | Permalink

    Great article, I just implemented BigText.js on a current project. Just wanted to point out that the fact that the two screenshots at the top are very confusing! They are switched!

  3. Zach Leatherman
    Posted August 30, 2011 at 9:58 am | Permalink

    Hah! Sorry about that, I was trying to be cute.

  4. James Hood
    Posted December 9, 2011 at 11:14 am | Permalink

    Hey dood! This is neato – I’m looking for something to auto-size text on a jenkins plugin I just inherited for big-visible radiators. Naturally I started w/ BigText.

    small nit: irregardless isn’t a word – just ‘regardless’ will do. Located in the ‘Algorithm’ row under BigText column of the comparison.

    Keep it up!
    jim

  5. Zach Leatherman
    Posted December 9, 2011 at 3:53 pm | Permalink

    Fixed, thanks!