Fading links
I found a javascript to make link smoth betwin to colors.
Download it here and link it in the head-section on the page.
Open the CSS-editor in sours mode and past this text:
a { font-weight: bold; font-size: 11px; font-family: Verdana; text-decoration: none }
Open the page in sourse mode and make shore the body tag have this link attribute.
You can even find this if you click on the small page in the upper left corner on the page. The link attribute shows up in the inspector. This is the normal color of the links.
<body link="#999999" vlink="#999999" alink="#999999">
The endcolor (over state) is applied in the javascript. Open the javascript and in the beginning you fint the text:
/*** Create some global variables ***/
if(!window.JSFX)JSFX=new Object();
var LinkFadeInStep=20;
var LinkFadeOutStep=5;
var LinkEndColor="FFA500"
var LinkStartColor="FFFFFF";
var LinkFadeRunning=false;
The endcolor is marked with blue.
Hope you like this tips.
|