JSP custom taglib for UI development. This taglib lets you highlight some element on your page
in a light yellow color to call attention to it, and then slowly fade back to white color. It is a
simple effect for your Ajax pages for example, where you need to call attention to changed data.
This example highlights input field:
<%@ taglib uri="taglib.tld" prefix="f" %> <form> <input type="text" id="t1" value="Changed value"> </form> <f:YellowFade id="t1"/> and you will get some like this (refresh this page for the simulation):
Tags are: YellowFade highlights some element on your page and fade after that. Attributes are: 1) id Describes a DHTML id for your element.
for downloading: Library: yellowfadetag.jar Description: taglib.tld See also Coldtags suite - the largest collection of custom JSP tags.
|
Also in Coldtags:
|