Skip to content

This javascript jQuery library permits to replace any text block on a page with graphic characters.

Notifications You must be signed in to change notification settings

fguillen/FontParty

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FontParty JavaScript Library

Summary

This JavaScript jQuery library permits to replace any text block on a page with graphic characters.

Example

FontParty library demo page

Disclaimer

The results are not very serious, is just for very concrete scenarios.

How to Install

Download the jQuery library (is a dependence).

Download FontParty library last release.

Load the script libraries on your page:

<script src="jquery.js" type="text/javascript"></script>
<script src="./font-party/font-party.js" type="text/javascript"></script>

Load the FontParty css on your page:

<link href='./font-party/font-party.css' rel='stylesheet' type='text/css' />

How to Use

Normal html element:

<p class="myclass">This is a paragraph with text and all</p>

FontParty html element

<p class="myclass font-party">This is a paragraph with text and all</p>

How It Works

Selecting all the '.font-party' elements on the page and replace any characters into them with a 'div' element with special 'class' built on the fly.

(I think is better way to do this with 'img' elements, look the TODO tasks list)

Components

  • jQuery library needed
  • font-party.css
  • font-party.gif
  • font-party.js

How to Customize

Using your own font-chars-tile-image

Build a tile-based image with all the english characters following next template:

ABCDEFGHIJ
KLMNOPQRST
UVXYZ
abcdefghij
klmnopqrst
uvwxyz
1234567890
 .,;:

(First character of the last line is an space)

What means a table with 10 columns and 8 rows.

The height and width of the cells are customizable but all of them have to have the same ones.

Run the Ruby script that builds the customized .css file:

$ ruby font-party-css-creator.rb <image_file_name> <cell_width_on_pixels> <cell_height_on_pixels>

Code

FontParty's github repository

Author

Fernando Guillen

TODO

  • Support for not english characters.
  • Support for different size fonts.
  • Effects on mouse hover.
  • Not use div.style.background but img elements
  • Different font-parties on same page

License

MIT License

Copyright (c) 2012 Fernando Guillen Suarez

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

This javascript jQuery library permits to replace any text block on a page with graphic characters.

Resources

Stars

Watchers

Forks