UI
Monday, February 13th, 2006
Category: JavaScript
, Library
, TIBCO
, Toolkit
, UI
TIBCO Software Inc. has released TIBCO General Interface version 3.1 Professional Edition. This is an exciting new release (above and beyond the point release version number) because of: Pricing: We have run into past situations where the price of TIBCO GI put people off. TIBCO realised this, and has slashed the price, so much so Read the rest…
Saturday, February 11th, 2006
Category: UI
, Web20
Google is *rumoured* to be working on an Ajax web page editor: Google has a project codenamed trogdor, an ajax webpage editor for creating web pages. = geocities except with a javascript page creator. Google or not, an Ajax-style GeoCities makes sense. We’ve seen portal-like editors like Dobrado that make light work of page creation Read the rest…
2.9 rating from 574 votes
Wednesday, February 8th, 2006
Category: Library
, Prototype
, UI
Chris Campbell has written up a detailed look into an alternative implementation of Lightbox (which we linked to awhile back). The entry goes into detail on the CSS and JavaScript required to build the modal dialog, and it uses Prototype. Brian Shih integrated Scriptaculous effects, which makes it look very Apple-ish. You can check out Read the rest…
Thursday, January 19th, 2006
Category: JavaScript
, Library
, UI
Brian Williams wrote an article back in time on onion skinned drop shadows. Bob Aman decided that although he liked the drop shadows, he thought it was more complicated than it needs to be to implement it (lots of html and css). So he created a simple wrapper JS that uses behaviour.js to do the Read the rest...
Tuesday, January 10th, 2006
Category: Editorial
, JavaScript
, Library
, Toolkit
, UI
It seems like a lot of people want to get market share with their Ajax frameworks. ThinkCAP JX is now licensed as open source: Two software companies are beefing up their Web applications using Asynchronous JavaScript and XML (Ajax) and contributing parts of their products to the open-source community to try to spur further Ajax Read the rest...
Monday, December 26th, 2005
Category: UI
, Usability
So you've figured out that your users would appreciate a Progress Indicator during those impatient moments of asynchrony. Coding it is easy enough, the hard part is coming up with a pretty animated icon. Well, you can hopefully skip that bit now, thanks to a nice collection of animated icons from Jakob Skjerning (via Deep Read the rest...
Thursday, December 15th, 2005
Category: Canvas
, UI
Romain Guy is a top guy at Sun, known for his awesome effects and look and feels in Java Swing. He had a look on the Ajax side recently though, when he took Canvas for a ride. Take that rich UI frameworks! :) Source Code function drawCD() { var g2 = document.getElementById("cdCover").getContext("2d"); g2.save(); g2.translate(0, cdCase.height Read the rest...
Tuesday, November 29th, 2005
Category: JavaScript
, Toolkit
, UI
, Usability
Tooltip.js is a simple library that builds on top of Prototype and Script.aculo.us. You can create tooltips programatically, or just by using special CSS classes. CSS Styling Tooltips The most simple example is to add a div with the class of tooltip immediately after the item that you wish to activate a tooltip. E.g. <p>Click Read the rest...
3.9 rating from 106 votes
Wednesday, November 23rd, 2005
Category: Examples
, Mapping
, UI
Panoramio.com is a new photo service/Google Maps mash up. Although there are similiar mashups, this one stands out because of its simple, well designed interface. You upload a photo just by clicking on the location on the map and filling out the pop up form, without any need to log in. There is a nice Read the rest...
Category: UI
ColorBlender utilizes components that talk to eachother to give the layman a nice color match for any work that they are doing. A color slider, patchwork of colors, and mini variations hexagon all talk to eachother.
Friday, November 18th, 2005
Category: UI
, Usability
Luke Wroblewski, a usability guy, has written about Ajax Dialog Windows. He analyzes the new world of poping up dialog windows, rather than having to send people to new pages for those tasks. This technique makes perfect sense when: You only need to capture a little content You don't want to end up on a Read the rest...
Tuesday, November 15th, 2005
Category: Accessibility
, Toolkit
, UI
, Usability
Are you tired of wondering if your finely crafted interface will look correct in Safarai or the latest Konqueror on Linux? If so, check out browsershots. Just enter the URL you want screenshots for and it gets added to the queue. Check back (the delay is around a 12 hours lately) and you're screenshots will Read the rest...
Friday, November 11th, 2005
Category: UI
DomCorners is a clean technique for getting rounded corners. You get to put in a few JavaScript snippets like: <script type="text/javascript" src="domCorners.js"></script> <script type="text/javascript"> if(DomCheck()){ DomCorners("box","rc.png",10); } </script> and you end up with: It's amazing the lengths we go to get small things like roundness isn't it? :) Example 1 Example 2 Example 3
Friday, September 23rd, 2005
Category: Java
, JavaScript
, Toolkit
, UI
ClearNova has announced ThinkCAP JX, which is a RAD platform for building Ajax, and J2EE applications. Features MVC Framework Integrated Visual Workbench Page Flow Designer Smart Data Binding Data Aware Components "Mock" Data Prototyping Updateable DataView Content Management Checkout screen shots of the tools Resources ClearNova integrates Java and Ajax: Spurred by Ajax, the Rich Read the rest...
Thursday, September 8th, 2005
Category: CSS
, Examples
, JavaScript
, UI
Web forms. Everybody knows web forms. Each day we have to fill in some information in a web form, be it a simple login to your webmail application, an online purchase or signing up for a website. They are the basic (and pretty much the only) way of gathering information on the web. You basically Read the rest...