惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

T
Tailwind CSS Blog
人人都是产品经理
人人都是产品经理
博客园 - 叶小钗
大猫的无限游戏
大猫的无限游戏
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 【当耐特】
The Cloudflare Blog
博客园 - 聂微东
博客园 - 司徒正美
量子位
博客园 - 三生石上(FineUI控件)
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
G
Google Developers Blog
Apple Machine Learning Research
Apple Machine Learning Research
罗磊的独立博客
酷 壳 – CoolShell
酷 壳 – CoolShell
Y
Y Combinator Blog
S
SegmentFault 最新的问题
T
The Blog of Author Tim Ferriss
P
Proofpoint News Feed
Google DeepMind News
Google DeepMind News
Blog — PlanetScale
Blog — PlanetScale
有赞技术团队
有赞技术团队
A
About on SuperTechFans

博客园 - Aldebaran's Home

copy 命令复制大批文件时不覆盖现有文件 DataTable 与 Entity 间的转换工具 Levenshtein distance算法:计算两个字符串的差异 SQL 调优 IE 与 FireFox差别 ---javascript 我的常用工具 Html的一些小东西 - Aldebaran's Home - 博客园 职业发展三岔口-技术还是管理?那太难抉择了 Nhibernate学习点滴<一> 配置注意事项 - Aldebaran's Home WebPart全接触1(如何管理自己的WebPart个性化数据) 比尔·盖茨 经典语录 您的PC还处于待机中吗?让他参与科学计算吧! 关于控件的中事件的执行顺序的问题? 所有管理者最关心的问题-如何激发员工高绩效地工作? (转) 2007工作总结 发现一些有趣的工具 关于动态添加AsyncPostBackTrigger失效的问题 工作一个月的感想 自己写的一个字符索引器,有关于效率和代价问题请教各位
幻灯片 - Aldebaran's Home - 博客园
Aldebaran's · 2008-06-03 · via 博客园 - Aldebaran's Home

初始化函数

function setTransition(){
     
if (document.all)
     
{
        bannerADrotator.filters.revealTrans.Transition
=23;
        bannerADrotator.filters.revealTrans.apply();
     }

 }
 
 
function playTransition()
 
{
    
if (document.all)
        bannerADrotator.filters.revealTrans.play()
 }

 
function nextAd()
 
{
    
if(adNum<bannerAD.length-1)
        adNum
++ ;
    
else adNum=0;
        setTransition();
    document.images.bannerADrotator.src
=bannerAD[adNum];
    playTransition();
    theTimer
=setTimeout("nextAd()"6000);
}
 
 
function jump2url()
 
{
    jumpUrl
=bannerADlink[adNum];
    jumpTarget
=bannerADtarget[adNum]; 
    
if (jumpUrl != '')
    
{
        
if (jumpTarget != '')
            window.open(jumpUrl,jumpTarget);
        
else 
            window.open(jumpUrl,
"","width=305,height=512,toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no");
    }

}

function displayStatusMsg() 

    status
=bannerADlink[adNum];
    document.returnValue 
= true;
}