Custom JSP tag. This taglib lets you define a panel with shadow (so called drop shadow). For example:
<%@ taglib uri="taglib.tld" prefix="d" %> <d:DropShadow width="200px" height="50px" border="1px solid black" style="margin-left:4px"> This text will be placed on the drop shadow panel </d:DropShadow> and you will get this:
This text will be placed on the drop shadow panel you can provide your own colors for the shadow and panel:
<d:DropShadow width="200px" height="50px" shadowColor="gray" panelColor="#5377A9" border="1px solid #5377A9" style="margin-left:4px"> This text will be placed on the drop shadow panel </d:DropShadow> and you will get this:
This text will be placed on the drop shadow panel Tags are: DropShadow Body tag. Lets you define a panel with shadow. Tag's body describes your HTML/JSP code for the panel. Parameters are: 1) width Optional parameter. Describes a width for your panel
for downloading: Library: dropshadowtag.jar Description: taglib.tld See also Coldtags suite - the largest collection of custom JSP tags.
|
Also in Coldtags:
|