Archive for the 'Component' Category
Works even in IE6
Love that quote from the color picker over at RaphaelJS land. This plugin by Dmitry Baranovskiy gives you an easy color picker in short order:
PLAIN TEXT
JAVASCRIPT:
var icon = Raphael(”picker”, 23, 23).colorPickerIcon(11, 11, 10);
icon.attr({cursor: “pointer”}).node.onclick = function () {
document.getElementById(”benefits”).style.visibility = “visible”;
var out = document.getElementById(”output”);
out.style.visibility = “visible”;
[...]
March 4th, 2010 | Posted in Component, Front Page, Miscellaneous | Comments Off
The Moxiecode folks (TinyMCE fame) have released a generic component Plupload that allows you to create a rich upload experience on the back of a variety of transports. Whether it be HTML5, Gears, Silverlight, Flash, BrowserPlus or normal forms, you can get an upload experience with drag and drop, progress, client side image resizing and [...]
February 10th, 2010 | Posted in Component, Front Page, JavaScript, Miscellaneous | Comments Off
Alex MacCaw has released Machsend, a Yahoo! Browser Plus plugin that enables P2P file transfers from inside the browser.
It showcases what can be done with a BP plugin, leaving you wish cross browser functionality.
I guess it is kinda fun to hack the browser 
July 3rd, 2009 | Posted in Component, Front Page, Miscellaneous, Yahoo! | Comments Off
John Gunther has released GChart 2.5, a client-side library that adds a new canvas-rendering option for sharper, better looking, alpha-transparent, pie, line, and area charts.
John told us:
Canvas-rendering corrects GChart’s most serious visual quality limitations (including the most often mentioned problem by its users: the banded-filled pie slice).
Coupled with its existing feature set and ease of [...]
July 2nd, 2009 | Posted in Component, Front Page, GWT, Library, Miscellaneous | Comments Off
ProtoFish is an advanced hover menu based on Prototype, written by Peter Slagter. You can easily add a delay to your menu (on mouseout) and choose your own hover class. All ProtoFish menu’s will respond to users who use the TAB-key to navigate through your page.
It is trivial to use. Once you load up [...]
June 23rd, 2009 | Posted in Component, Front Page, Miscellaneous, Prototype | Comments Off
Francisco Tolmasky presented on the latest goodies from 280North at JSConf. In the past we’ve given the 280North guys a bad time for talking about 280Slides and their other stuff using… Keynote. I don’t know if he used Keynote at JSConf, but Francisco published the slides using the 280Slides web-based presentation viewer, which is also [...]
April 24th, 2009 | Posted in Atlas, Component, Design, Front Page, Miscellaneous, Video, cappuccino | Comments Off
Over at devthought, Guillermo Ranch has rewritten his clone of Facebook’s “TextboxList” component:
It’s been some time since TextboxList got some attention. It is undoubtedly one of the my most popular JavaScript projects, along with the famous Fancy Menu (MorphList) and its slideshow sibling, BarackSlideshow.
TextboxList has been rewritten from scratch, and it’s more solid than ever. [...]
April 10th, 2009 | Posted in Component, Front Page, Miscellaneous, MooTools | Comments Off
The team at Nextpoint has released the open source project Growl4Rails, a component providing Growl-like functionality in Rails web applications.
Nextpoint’s e-discovery product deals with many very large documents. Indexing, imaging and PDF-ing of those documents can take a bit of time, which requires us to execute these tasks asynchronously. Background processing demands a [...]
February 18th, 2009 | Posted in Component, Front Page, JavaScript, Miscellaneous, Prototype, Rails | Comments Off
So, you want to create a button that you have full control over, and you want it to work well cross browser. Shouldn’t be hard right? Wrong.
Doug Bowmanepines about the job of doing just this, which is something he kicked off at Google, and we see the result in apps such as Sites and recently [...]
February 5th, 2009 | Posted in CSS, Component, Front Page, Miscellaneous, UI | Comments Off
I thought that sexy curls were not related to technology, but Elliot Kember packaged a nice and easy page curl plugin using jQuery.
All you need to do is:
PLAIN TEXT
HTML:
<script type=”text/javascript” src=”turn/turn.js”></script>
<link rel=”stylesheet” type=”text/css” href=”turn/turn.css”>
<script>
$(document).ready(function(){
$( ‘#target’ ).fold();
});
</script>
January 20th, 2009 | Posted in Component, Front Page, Miscellaneous, jQuery | Comments Off