August 2003
Sun Mon Tue Wed Thu Fri Sat
          1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
31            
Jul   Sep


Archives

Blogroll


Subscribe to "Dev" in Radio UserLand.

Click to see the XML version of this web page.



Click here to send an email to the editor of this weblog.
 
 Sunday, August 24, 2003
Sun tutorial on RSS with software that parses RSS files from Java.
[Scripting News
10:36:50 PM      comment []   trackback []  



Cute CSS-based Rollover Trick
Typical rollover uses multiple images, one for each state. Petr Stanicek shows how CSS2's background-position attribute can be used to do rollover with just one image containing subimages for multiple states. Cute. Via Paschal L.

For the impatient, here is the meat:

#menu a { ...
    background: url("button.gif") top left no-repeat;
... }
#menu a:hover { ...
    background-position: 0 -39px;
... }
#menu a:active { ...
    background-position: 0 -78px;
... }

[Don Park's Daily Habit
2:36:58 AM      comment []   trackback []  



Flash Head
I'm not sure how to describe this Flash app. Maybe something like this: It's a partial head that moves in response to your mouse. The author calls it "Looking," and says: "This is one of the hardest things I have ever managed to code. The engine is based on a single image and multiple clips sandwiched together. The math involved in the movement is still really buggy.... but hey! it's gettin there." The site is called ARSEIam, and it has lots of other cool stuff.
[The J-Walk Blog
1:39:50 AM      comment []   trackback []