Coder Social home page Coder Social logo

dropcap.js's Introduction

dropcap.js

dropcap.js makes beautiful drop caps easy for the web.

Why

Though drop caps are very common in magazines and books, they remain rare on the web. We believe this is because doing it right simply and reliably is too difficult. A simple CSS float:left on a ::first-letter pseudo-element is not enough, as this tumblr shows.

The CSS Working Group is currently specifying a new property for drop cap layout. Until this makes it into all our favorite browsers we wanted to make it work with today's platform.

Using dropcap.js

First, your drop cap letters need to be enclosed in an HTML element e.g.:

<p>
    <span class="dropcap">T</span>HE Quick Brown Fox...
</p>

This is required because the CSS Object Model does not expose write access to the styling of pseudo-elements like ::first-letter; until then, explicit markup is preferred in this version.

Then, once you have updated your markup, simply include the script in your page.

<script src='./dropcap.min.js'></script>

The script defines the window.Dropcap.layout method; you call it like so:

window.Dropcap.layout(dropcapRef, heightInLines, baselinePos);

Dropcap.layout(dropcapRef, heightInLines, baselinePos)

dropcapRef

The dropcapRef parameter may be one of:

  • An individual HTMLElement object
  • A NodeList e.g. obtained from querySelectorAll() or a property such as Node.childNodes

For instance:

	<script src='./dropcap.min.js'></script>
	<script>
		var dropcaps = document.querySelectorAll(".drop-cap");
		window.Dropcap.layout(dropcaps, 3);
	</script>

The specified element(s) will be floated, sized and positioned based on the values you specify for baselinePos and heightInLines.

heightInLines

The heightInLines parameter must have a value of 1 or higher. It specifies the height of the drop cap as a number of lines of the adjoining paragraph.

baselinePos (optional)

The baselinePos parameter is optional; when specified, its value should be 1 or higher. It defines which baseline of its parent element the drop cap's own baseline must align with. For instance, a value of 4 means 'align the drop cap's baseline with the baseline of the paragraph's fourth line'. By default, baselinePos is the same as heightInLines, which makes the drop cap extend from the baseline of the baselinePos-th line to the cap line of the first line. (This is the most common use-case). When baselinePos is smaller than heightInLines, the result is that of a 'raised cap' as the top of the drop cap will be a number of lines above the first line of the paragraph.

Building dropcap.js

To edit and build your own version of dropcap.js, you will need node, npm, and grunt. To build:

  1. Clone the repository
  2. Enter the src directory of the repo
  3. Run npm install
  4. Run grunt build

You should see a dropcap.js and dropcap.min.js in the repository's root.

Testing dropcap.js

The test folder currently has one test. The ten-line-tests.html file has several large initial letters hand-coded to look correct in Mac Firefox. The test button will run window.Dropcap.layout on all of these initial letters and measure the difference between the script output and the hand-coded expected result. The differences are displayed in the console. This test was used to confirm whether iterations on the library were improving or degrading the result.

Known Constraints & Limitations

  • We recommend setting an explicit line-height value for your drop caps' parent element. At least one browser (Chrome) computes the property's initial value of 'normal' to 'normal' instead of a length. You will get the best results with a length value or a factor like 1.2.
  • dropcap.js currently assumes western content. Other international conventions - e.g. drop words, or Asian script conventions - are not supported.
  • The current logic assumes the drop cap element's content to be a single glyph. It will not fail with several but was tested for single-glyph use.
  • Dynamic content updates or document resizing are not automatically handled. It is up to the application to call window.Dropcap.layout when necessary.
  • Fonts are assumed to be loaded by the time dropcap.js computed the font-family property.
  • The sizing and positioning of the drop cap are done using pixel lengths. A future update may use EMs.

Browser Support

We tested dropcap.js on Windows (IE10+, Firefox, Chrome) and OSX (Firefox, Chrome, Safari).

Feedback

Please let us know if you have any feedback. If you run into any problems, you can file a new issue. You can also reach us @adobeweb.

dropcap.js's People

Stargazers

 avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.