font sizer javascript

Javascript No Comments »

Once the font size is selected, a cookie is set. The next time the user comes to the page the font will be the same size they left it.

LINK

Slider put to good use.

architecture, Javascript No Comments »

logo1.gif

Very simple website using a slider effect to scroll the entire background image. Displaying multiple architect projects.

Universal Fade Javascript

Javascript No Comments »

Fade object from X% to Y% opacity. Very simple to implement. Could be used for a variety of things. enjoy the find.

LINK

Check out the rest of the site for more useful links. Nomadic Funtions
Link

Speed up the processing of Photoshop

Photoshop Resources, Photoshop No Comments »

If your computer has more than 1 GB of RAM, you can take advantage of Photoshop’s Bigger Tiles Plug-In. This plug-in allows Photoshop to process image data in large chunks to reduce overall loading time and increase responsiveness. To do this, browse to Photoshop\Plug-Ins\Adobe Photoshop Only\Extensions\Bigger Tiles folder and remove the ~ from the filename of ~Bigger Tiles.8BX so that the file name is “Bigger Tiles.8BX”. If photoshop is opened, restart Photoshop.

LINK

Mac screensaver uses Flickr

images No Comments »

Mark Frauenfelder: DeskLickr is a neat Mac screensaver that grabs images from Flickr, "giving you all the options to grab photos from your profile, tag searches or even the DeskLickr group filled with hand selected Desktop goodness!" Link

[via Boing Boing]

Design by Metaphor

Design No Comments »

Sometimes the best way to understand a client's needs is by comparing their project to an existing site or service. The site should feel "like eBay" and work "like Expedia." But what do such comparisons really mean? Learn to master the metaphor while avoiding unrealistic goals and expectations.

 

[via A List Apart]

Staying Motivated

Design No Comments »

Been stuck in a creative rut so long so you've started to decorate it? A List Apart’s Kevin Cornell drops his crayons to share tips on developing and maintaining a productive creative routine.

[via A List Apart]

Ellipsis or truncate with dots via JavaScript

Javascript No Comments »

Steffen Rusitschka wanted a cross-browser text-overflow:ellipsis, so he created it and told us all about it via Ellipsis or “truncate with dots” via JavaScript.

You can see it in action, or download the code. The main ellipsis function:

PLAIN TEXT
JAVASCRIPT:
  1. function ellipsis(e) {
  2.   var w = e.getWidth() - 10000;
  3.   var t = e.innerHTML;
  4.   e.innerHTML = "" + t + "";
  5.   e = e.down();
  6.   while (t.length> 0 && e.getWidth()>= w) {
  7.     t = t.substr(0, t.length - 1);
  8.     e.innerHTML = t + "…";
  9.   }
  10. }
[via Ajaxian]

Blueprint CSS Framework: Typography matters

Javascript No Comments »

Olav Bjorkoy recently launched Blueprint CSS, a framework that takes typography into account.

Why did Olav create it?

After reading an article by Jeff Croft on frameworks for designers, I started looking at the existing CSS frameworks, trying to find one that was right for me.

Never again was I to repeat the tedious task of creating a grid from scratch, defining default typography, or battling with inconsistent default browser CSS.

Read the rest of this entry »

Purple Include 1.9

Javascript No Comments »

In July, Brad Neuberg and a group of talented hackers released Purple Include, a library that does transclusions.

Now there is a new version which is a major refactoring that simplifies working with the library and now works across all major browsers.

Brad tells us more:

Purple Include is a client-side JavaScript library that allows you to do client-side transclusions.

What the heck does that mean?

It means that you can include and display fragments of one HTML page in another without copying and pasting any content. For example, you could quote the second paragraph from another person's blog entry by embedding something like:

[via Ajaxian]

Entries RSS Comments RSS Login