中国网站美工网!网页设计者的天堂!
本站特色:HTML网页模版下载    
  您的位置:

首页 >> 网页特效 >> 链接特效 >> 正文

相关信息

网页小技巧:如何去除超链接的下
又一个鼠标移到按钮上就会出现跳
一种隐藏URL的方法 (并是弹出无
网页加入到收藏夹特效
先点击指定链接,才能看到受限制
鼠标移到链接上,文字本身及背景
提示特效打字效果
鼠标移到按钮上就会出现跳马灯式
网页十字显现
有没有看过会旋转的链接? 请看
翻转的超链接
色彩变幻的链接
单行卷轴加链接
闪烁的连接

链接文字的渐变效果

链接文字的渐变效果


来源: 本站原创 | 时间: 2005-12-28 19:44:26 | 人气:

 

链接文字的渐变效果

要完成此效果把如下代码加入到<body>区域中

<SCRIPT language=Javascript>
           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);
    }
}

 

/*-----------------=[fadeout]=----------------------
||Fades the text from one color to another color   ||
||when the mouse moves off of the link.            ||
---------------------------------------------------*/

function fadeout(element) {


         
    fade(250,152,29, 100,100,100, 30, 1, element);
}

/*------------------=[fadein]=----------------------
||Fades the text from one color to another color   ||
||when the mouse moves over the link.              ||
||-------------------------------------------------*/

function fadein(element) {

    fade(100,100,100, 255,255,255, 15, 1, element);

本新闻共2页,当前在第1页  1  2  

 
  上一篇:一种隐藏URL的方法 (并是弹出无边窗口)  下一篇:又一个鼠标移到按钮上就会出现跳马灯式样的说明文字
Copyright © 2005 - 2006 WEB600.Net,All Rights Reserved
业务联系 QQ 站长:106324307 美工:270348300 程序:63888546
E-mail: 3235183@163.com MSN: fuqiyangru@hotmail.com
中国网站美工网--网页设计者的天堂! 陕ICP备06005517号
本站资源来自互联网 如果侵犯您的权利 请通知我们 我们会尽快删除