Component
Tuesday, June 22nd, 2010
Category: Component
, JavaScript
DragDealer is a fine new JavaScript component that abstracts both touch and point interfaces. It makes life easy to do sliders and the like: PLAIN TEXT HTML: <div id="my-slider" class="dragdealer"> <div class="red-bar handle">drag me</div> </div> <script> new Dragdealer('simple-slider'); </script> But, it can do so much more. Most of the Read the rest...
Friday, June 18th, 2010
Category: Component
, JavaScript
, Library
Sergey Chikuyonok has created a really nice, easy to use, and good looking content assist library for input text fields and text areas: It calculates precise position of characters in <textarea> or <input> tag and places completion proposals popup under it. You can explicitly call popup window to assist/replace word (depends on caret position) with Read the rest...
Thursday, March 4th, 2010
Category: Component
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"; Read the rest...
Wednesday, February 10th, 2010
Category: Component
, JavaScript
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 Read the rest...
Friday, July 3rd, 2009
Category: Component
, Yahoo!
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 :)
Thursday, July 2nd, 2009
Category: Component
, GWT
, Library
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 Read the rest...
Tuesday, June 23rd, 2009
Category: Component
, Prototype
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 Read the rest...
Friday, April 24th, 2009
Category: Atlas
, Cappuccino
, Component
, Design
, Video
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 Read the rest...
Friday, April 10th, 2009
Category: Component
, MooTools
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 Read the rest...
Thursday, February 19th, 2009
Category: Component
, JavaScript
, Prototype
, Rails
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 solid Read the rest...
Friday, February 6th, 2009
Category: Component
, CSS
, UI
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 Read the rest...
Tuesday, January 20th, 2009
Category: Component
, jQuery
I thought that sexy curls were not related to technology, but Elliott 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>
Thursday, January 8th, 2009
Category: Component
, Examples
, jQuery
Scott Robbin (Songza co-founder) has created a very cool jQuery plugin for pageSlide, an interaction based off of Aza's prototypes for Firefox Mobile and Ubiquity mouse gestures. The plugin wraps body content into a container and shifts it off of the page whenever a click event is fired, revealing a secondary interaction pane. This plugin Read the rest...
Wednesday, January 7th, 2009
Category: Component
Sébastein Gruhier has released a new address component that integrated a map with the address that you are filling. The UX is interesting as when you first get typing it doesn't really narrow down the address so you are seeing maps of bizarre places. As well as a basic version, you can also tie in Read the rest...
Thursday, December 11th, 2008
Category: Component
Joseph Woods of PHPCow sent us a note about SmartMarkUP, a "universal markup editor": SmartMarkUP is a lightweight and powerful JavaScript library that allows you to turn any textarea into a fancy markup editor. HTML, CSS, XML, Wiki syntax, BBCode or any other desired markup language can be implemented and/or adjusted to your preferences and Read the rest...
Thursday, November 13th, 2008
Category: Component
, jQuery
Several months ago, we covered jsTree, a promising new tree component built on top of jQuery. It's since gained its own website and is nearing a 1.0 release. There have been a few changes since we last wrote about it: * A lot of focus on the JSON data source * Native async support (meaning Read the rest...