欢迎你的访问
 
返回天空素材库首页 http://www.Skysucai.com  
收藏本站
将本站设为首页
您当前的位置:天空素材首页 -> 渐变文本特效
 
栏 目 导 航
. 常用代码 . 综合特效
. 状态特效 . 游戏特效
. 页面背景 . 页面特效
. 页面导航 . 文本操作
. 文本特效 . 图形特效
. 鼠标特效 . 时间日期
. 密码特效 . 浏览相关
. 警告对话 . 技巧特效
. 计数转换 . 测试搜索
. 代码生成 . 播放音乐
. 按钮特效 . 系统相关
. 链接特效 . 黑客性质
. 相关特效 . 窗口特效
. 广告特效 . 表单表格
. 模拟例子
相 关 文 章
· 网页文本特效-会跳舞...
· 渐变文本
本 类 热 门
· 飞行的文字
· 闪动的文字
· 字体效果
· 水形文字
· 变色文字
· 字体变化效果
· 动态文字
· tips生成页
· 照明灯式
· 滚动文字
· 字体环绕
· 双击滚屏
更多  
 
 
更多  
最 新 推 荐
· 状态栏时间跳动特效
· 农历挂历特效
· 真正的万年历
· 网页特效 菜单-会动的...
· 网页特效 时间-任意位...
· 个人网页特效-有前后日...
· 时间每过一秒,Radio就...
· 时钟显示在任意指定位...
· 带开关的Form时钟
· 记录几天后的日期
· 显示登陆时间
· 退出时显示访问时间
更多  
     
渐变文本特效
渐变文本特效
作者:无  来源:本站整理  名称:渐变文本特效 

减小字体 增大字体

       

[提示:你可先按照下面代码提示修改 上面部分代码,再按运行,此处看到的演示不完全正确]

此特效的详细完整代码如下:

<HEAD>
<TITLE>Faded Text</TITLE>
</HEAD>

<body bgcolor="ffffff">
<script>
<!-- Hide the script from old browsers --
function MakeArray(n){  
    this.length=n;  
    for(var i=1; i<=n; i++) this[i]=i-1;  
        return this
    }
    hex=new MakeArray(16);
    hex[11]="A";
    hex[12]="B";
    hex[13]="C";
    hex[14]="D";
    hex[15]="E";
    hex[16]="F";

function ToHex(x){             
    // Changes a int to hex (in the range 0 to 255)  
    var high=x/16;  
    var s=high+"";              
    //1  
    s=s.substring(0,2);         
    //2 the combination of these are the same as the trunc function  
    high=parseInt(s,10);        
    //3  
    var left=hex[high+1];       
    // left part of the hex-value  
    var low=x-high*16;          
    // calculate the rest of the values  
    s=low+"";                   
    //1  
    s=s.substring(0,2);         
    //2 the combination of these are the same as the trunc function  
    low=parseInt(s,10);         
    //3  
    var right=hex[low+1];       
    // right part of the hex-value  
    var string=left+""+right;   
    // add the high and low together  
    return string;
}

function fadein(text){  
    text=text.substring(3,text.length-4);       
    // gets rid of the HTML-comment-tags  
    color_d1=255;                               
    color_d1b=255;
    color_d1c=255;
    // any value in 'begin' 0 to 255  
    mul=color_d1/text.length;  
    for(i=0;i<text.length;i++){     
        color_d1=mul*i;
        color_d1b=255-mul*i;
        color_d1c=255*Math.sin(i/(text.length/3));

        // some other things you can try>> "=255-mul*i" to fade out, "=mul*i" to fade in, or try "255*Math.sin(i/(text.length/3))"     
        color_h1=ToHex(color_d1);     
        color_d2=mul*i;     
        color_h2=ToHex(color_d2);     
        //1b
        color_h1b=ToHex(color_d1b);     
        color_d2b=mul*i;     
        color_h2b=ToHex(color_d2b);     
        //1c
        color_h1c=ToHex(color_d1c);     
        color_d2c=mul*i;     
        color_h2c=ToHex(color_d2c);     

        document.write("<FONT COLOR='#FF"+color_h1+color_h2+"'>"+text.substring(i,i+1)+'</FONT>');  

    }
    document.write('<p>');
    for(i=0;i<text.length;i++){     
        color_d1=mul*i;
        color_d1b=255-mul*i;
        color_d1c=255*Math.sin(i/(text.length/3));

        // some other things you can try>> "=255-mul*i" to fade out, "=mul*i" to fade in, or try "255*Math.sin(i/(text.length/3))"     
        color_h1=ToHex(color_d1);     
        color_d2=mul*i;     
        color_h2=ToHex(color_d2);     
        //1b
        color_h1b=ToHex(color_d1b);     
        color_d2b=mul*i;     
        color_h2b=ToHex(color_d2b);     
        //1c
        color_h1c=ToHex(color_d1c);     
        color_d2c=mul*i;     
        color_h2c=ToHex(color_d2c);     

        document.write("<FONT COLOR='#FF"+color_h1c+color_h2c+"'>"+text.substring(i,i+1)+'</FONT>');  

    }
    document.write('<p>');
    for(i=0;i<text.length;i++){     
        color_d1=mul*i;
        color_d1b=255-mul*i;
        color_d1c=255*Math.sin(i/(text.length/3));

        // some other things you can try>> "=255-mul*i" to fade out, "=mul*i" to fade in, or try "255*Math.sin(i/(text.length/3))"     
        color_h1=ToHex(color_d1);     
        color_d2=mul*i;     
        color_h2=ToHex(color_d2);     
        //1b
        color_h1b=ToHex(color_d1b);     
        color_d2b=mul*i;     
        color_h2b=ToHex(color_d2b);     
        //1c
        color_h1c=ToHex(color_d1c);     
        color_d2c=mul*i;     
        color_h2c=ToHex(color_d2c);     

        document.write("<FONT COLOR='#FF"+color_h1b+color_h2b+"'>"+text.substring(i,i+1)+'</FONT>');  

    }

}
// --End Hiding Here -->
</script>
<center><font size=7>渐 变 文 本</font>
<hr width=80%>

<SCRIPT LANGUAGE="JavaScript">
<!--  
{
    fadein("-->这是一个渐变文本的例子.<!__");
}
//-->
</SCRIPT>
</center>
<!-- HINT--Don't forget to add this argument to your BODY tag:  onLoad="ticker()" --></body></html>


[返回上一页] [打印渐变文本特效]
下一篇特效:带阴影的字特效
     
| 关于本站 | 服务条款 | 友情连接 | 网站地图 | 联系方式 | 广告联系 |