Annotating Images (Annotate)
I was doing some research on how to annotate images and found a couple decent JS Libraries.
- http://annotorious.github.io/
- http://nikolaydyankovdesign.com/wp-content/themes/nikolaydyankovdesign/demos/hotspot-map/builder/builder.html
- http://zurb.com/playground/javascript-annotation-plugin
- http://fabricjs.com/
Darin’s Awesome Table Overflow jQuery Plugin
Not sure what to call it, but it is awesome.
If a table’s width becomes greater than its container, this plugin wraps it in a div and allows it to scroll horizontally so that the page’s width doesn’t get messed up on mobile devices.
It also adds a message above the table indicating that it can be scrolled, for there are no scroll bars on mobile devices.
The Plugin:
(function($){$.fn.tableOverflow=function(options){var settings=$.extend({displayMessage:true,message:"← scroll table left and right →"},options);$(window).resize(function(){$('.table-overflow-container').each(function(){if($(this).outerWidth()<$(this).find('table').outerWidth()){$(this).find('.table-overflow-msg').show()}else{$(this).find('.table-overflow-msg').hide()}})});return this.each(function(){$(this).wrap('<div class="table-overflow-container"/>');$(this).parent('.table-overflow-container').css({'margin':$(this).css('marginTop')+' '+0+' '+$(this).css('marginBottom'),'overflow':'auto'});if(settings.displayMessage){$(this).parent('.table-overflow-container').prepend('<p class="table-overflow-msg" style="display:none;font-size:0.8em;margin:0 0 0.5em;opacity:0.7;text-align:right;">'+settings.message+'</p>')};$(this).css('margin','0');if($(this).parent('.table-overflow-container').outerWidth()<$(this).outerWidth()){$(this).parent('.table-overflow-container').find('.table-overflow-msg').show()}})}}(jQuery));
Initialize:
$('table').tableOverflow();
You can initialize on all tables or be more specific and add a class like ‘table-overflow’.
$('table.table-overflow').tableOverflow();
It even has options:
displayMessage: true(default) | false,
message: “← scroll table left and right →”(default) | “Your own message”

El-Jay Plumbing & Heating
- Concrete5
- HTML5 Boilerplate
- CSS3
- Google Web Fonts
- jQuery Cycle2 for homepage slider

Keystone Design Build
Redesign for Keystone Design Build.
- Static Site
- Admin for managing Projects and Testimonials
- HTML5 Boilerplate, CSS3, Google Webfonts
- jQ Cycle for homepage and project detail
- Custom jQ filterable project gallery
The Best favicon Generator
This has got to be the end all-be all of favicon generators.
http://realfavicongenerator.net/
Upload one image and it will generate all of the images for you as well as the required code.
Upload the highest quality icon you can, preferably 512×512 if possible.
<link rel="apple-touch-icon" sizes="57x57" href="/apple-touch-icon-57x57.png" /> <link rel="apple-touch-icon" sizes="114x114" href="/apple-touch-icon-114x114.png" /> <link rel="apple-touch-icon" sizes="72x72" href="/apple-touch-icon-72x72.png" /> <link rel="apple-touch-icon" sizes="144x144" href="/apple-touch-icon-144x144.png" /> <link rel="apple-touch-icon" sizes="60x60" href="/apple-touch-icon-60x60.png" /> <link rel="apple-touch-icon" sizes="120x120" href="/apple-touch-icon-120x120.png" /> <link rel="apple-touch-icon" sizes="76x76" href="/apple-touch-icon-76x76.png" /> <link rel="apple-touch-icon" sizes="152x152" href="/apple-touch-icon-152x152.png" /> <link rel="icon" type="image/png" href="/favicon-16x16.png" sizes="16x16" /> <link rel="icon" type="image/png" href="/favicon-32x32.png" sizes="32x32" /> <link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96" /> <link rel="icon" type="image/png" href="/favicon-160x160.png" sizes="160x160" /> <meta name="msapplication-TileColor" content="#da532c" /> <meta name="msapplication-TileImage" content="/mstile-144x144.png" /> <meta name="msapplication-square70x70logo" content="/mstile-70x70.png" /> <meta name="msapplication-square150x150logo" content="/mstile-150x150.png" /> <meta name="msapplication-wide310x150logo" content="/mstile-310x150.png" /> <meta name="msapplication-square310x310logo" content="/mstile-310x310.png" />
Recent Comments