| Web Menus |
Expand Menu Studio
*NEW* Construct and maintain multi-level menus with this complete menu solution. Includes a menu editor and 50 menu design templates.
Read More...
Mercury Buttons
Dynamically build graphical web buttons and tabs in just minutes. No images required!
Read More...
Fission Menu
Quickly turn a single image into a stylish themed panel of web buttons with the minimum of effort!
Read More...
eXpand
The classic 2-level menu applet. Dynamically expand sub-menus as you move over top-level menus.
Read More...
|
| Banners |
Spotlight Banner
Create fantastic eye-catching lighting effects with the Spotlight applet.
Read More...
|
| Security |
Abstract e-mail
Abstract offers a truly simple solution to protecting e-mail addresses on your site.
Read More...
|
|
|
 | 2. Basics | |
2.1 Background Color In most cases, you will probably want to match the background color of the Abstract applet with the main background color of your web page. This is usually done to blend the applet into the web page, making it appear to have a transparent background.
You can achieve this through the BGColor parameter:
| |  | <applet code="WibbleAbstract.class" height=100 width=150>
<param name="BGColor" value="FFFFFF">
<b>This page requires a java-capable browser</b> </applet>
|  |
| |
The BGColor value is a hexadecimal number in the range 000000-FFFFFF. This is a fairly standard RGB notation for color values.
2.2 The Color Model The color value is a hexadecimal number in the range 000000-FFFFFF. This range covers over 16 million possible colors. The way the color value is represented in this 6-digit hexadecimal format is very common. However, an explanation is provided here, just in case you haven't come across this type of color representation before.
The color model is comprised of red, green and blue values (known as RGB). The red value is defined in the first 2 hex digits, the green value in the middle 2, and the blue value in the last 2.
So, if a red value of 1, a green value of 2 and a blue value of 3 was required, the hexadecimal number would be "010203".
All very well, you may think, but what do all these value actually mean? Well, the individual RGB values range from 00-FF. Values at the lower range of this scale mean less of that color, values at the higher range of the scale mean more of that color.
If, for example, you wished to define a pure red color, you would want the highest possible red color (FF). When arranged in the RGB color model, this would be shown as FF0000 (red is FF, green is 00, and blue is 00).
Pure green would be 00FF00 (red is 00, green is FF, and blue is 00).
Pure blue would be 0000FF (red is 00, green is 00, and blue is FF).
The following color chart shows common colors and their values:
| | | FFFFFF | | | 800080 | | | 000000 | | | FF00FF | | | 808080 | | | 808040 | | | C0C0C0 | | | FFFF80 | | | 800000 | | | 004040 | | | FF0000 | | | 00FF80 | | | 808000 | | | 0080FF | | | FFFF00 | | | 80FFFF | | | 008000 | | | 004080 | | | 00FF00 | | | 8080FF | | | 008080 | | | 8000FF | | | 00FFFF | | | FF0080 | | | 000080 | | | 804000 | | | 0000FF | | | FF8040 |
|
|
|