要那么花哨有意思吗?喜欢的话用flash做好了
<html><head><style type="text/css">
body {font-family: arial;font-size: 12px;filter: dropShadow(color=#808080, OffX=1, OffY=1, Positive=2)}
a:link {text-decoration: none; color: #ffffff; font-size: 12px}
a:visited {text-decoration: none; color: #ffffff; font-size: 12px}
a:active {text-decoration: none; color: #ffffff; font-size: 12px}
a:hover {text-decoration: none; color: #000000; font-size: 12px}
</style><script>document.onmouseover = domouseover;
document.onmouseout = domouseout;function domouseover() {
  if(document.all){
  srcElement = window.event.srcElement;
  if (srcElement.className.indexOf("fade") > -1) {
        var linkName = srcElement.name;
      fadein(linkName);
}
}
}function domouseout() {
  if (document.all){
  srcElement = window.event.srcElement;
  if (srcElement.className.indexOf("fade") > -1) {
        var linkName = srcElement.name;
      fadeout(linkName);
      }
      }
}function makearray(n) {
    this.length = n;
    for(var i = 1; i <= n; i++)
        this[i] = 0;
    return this;
}hexa = new makearray(16);
for(var i = 0; i < 10; i++)
    hexa[i] = i;
hexa[10]="a"; hexa[11]="b"; hexa[12]="c";
hexa[13]="d"; hexa[14]="e"; hexa[15]="f";function hex(i) {
    if (i < 0)
        return "00";
    else if (i > 255)
        return "ff";
    else
       return "" + hexa[Math.floor(i/16)] + hexa[i%16];}function setbgColor(r, g, b, element) {
      var hr = hex(r); var hg = hex(g); var hb = hex(b);
      element.style.color = "#"+hr+hg+hb;
}function fade(sr, sg, sb, er, eg, eb, step, direction, element){
    for(var i = 0; i <= step; i++) {
setTimeout("setbgColor(Math.floor(" +sr+ " *(( " +step+ " - " +i+ " )/ " +step+ " ) + " +er+ " * (" +i+ "/" +step+ ")),Math.floor(" +sg+ " * (( " +step+ " - " +i+ " )/ " +step+ " ) + " +eg+ " * (" +i+ "/" +step+ ")),Math.floor(" +sb+ " * ((" +step+ "-" +i+ ")/" +step+ ") + " +eb+ " * (" +i+ "/" +step+ ")),"+element+");",i*step);
    }
}function fadeout(element) {
fade(0,0,0,255,255,255, 20, 1, element);
}function fadein(element) {
fade(255,255,255,0,0,0,18, 1, element);
}</script></head><body bgcolor=#006699>
<a href=# class=fade name=a>hahahaha</a></body></html>

解决方案 »

  1.   

    <style>
    a.demo{background:#F0EBD6;padding:8px;width:240px;text-decoration:none;color:#000000;}
    a.demo:hover{background:#FFC080;color:#000000;}
    a.demo:active{background:#CCCFFF;color:#000000;}
    a.demo:visited{background:#FF3300;color:#000000;}
    #idCodeDiv{width:100%;padding:4px;font-family:verdana,tahoma;margin:12px 0px 0px 0px;background-color:#EEEEEE;font-weight:bold;}
    </style>
    <a class=demo href="none.html" onclick="return false;">With a hush upon the marsh , the afternoon slid . Into the late, immobile period, The sun glazing the reeds and coating the limestone quarry as I, in repose With the marsh, bathed in solitude and splendor.</a>
    <br>
    <br>
    <div id=idCodeDiv>a :link{background:#F0EBD6;padding:8px;width:240px;text-decoration:none;color:#000000;}<br>a :hover{background:#FFC080;color:#000000;}<br>a :active{background:#CCCFFF;color:#000000;}<br>a :visited{background:#FF3300;color:#00000</div>
      

  2.   

    用css的滤镜 +js了
    如果要想怎么折腾就怎么折腾那用flash好了