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

推荐订阅源

D
DataBreaches.Net
GbyAI
GbyAI
aimingoo的专栏
aimingoo的专栏
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
月光博客
月光博客
大猫的无限游戏
大猫的无限游戏
M
MIT News - Artificial intelligence
腾讯CDC
博客园 - Franky
Engineering at Meta
Engineering at Meta
C
Check Point Blog
T
The Blog of Author Tim Ferriss
有赞技术团队
有赞技术团队
Microsoft Azure Blog
Microsoft Azure Blog
MyScale Blog
MyScale Blog
I
InfoQ
Blog — PlanetScale
Blog — PlanetScale
P
Proofpoint News Feed
The GitHub Blog
The GitHub Blog
N
Netflix TechBlog - Medium
Last Week in AI
Last Week in AI
S
SegmentFault 最新的问题
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
WordPress大学
WordPress大学

博客园 - 吹吹风----NICK

mysql常用语句 MySQL的查询性能优化 实用MYSQL语句收集 转贴 DISCUZ7.0 恢复被删除的会员的UID MySQL批量替换指定字段字符串 discuz 7.0 主题 添加 查看 回复 - 吹吹风----NICK HTML页面跳转 - 吹吹风----NICK - 博客园 每个月每个季节成熟的水果 Google和百度、雅虎的站内搜索代码 - 吹吹风----NICK - 博客园 total command 指南(转载) 网站速度测试 google 本地商户中心常见的问题’ 冬季宝宝不着凉有绝招 #2006 - MySQL server has gone away 问题解决方法 phpmyadmin 3 最新版安装配置方法 华为ADSL路由设置 “phpmyadmin 无法载入 mcrypt 扩展,<br />请检查 PHP 配置”解决办法 phpmyadmin的乱码问题 沙滩鞋除臭法--针对常见户外沙滩鞋来讲
FLASH 全屏ACTION 代码 - 吹吹风----NICK
吹吹风----NICK · 2009-10-15 · via 博客园 - 吹吹风----NICK

// Action script...

// [Action in Frame 1]
Stage.scaleMode = "noScale";
Stage.align = "TL";
var stageListener = new Object();
stageListener.onResize = function ()
{
    loading.onEnterFrame = function ()
    {
        this._x = this._x + (Stage.width / 2 - this._x) * 3.000000E-001;
        this._y = this._y + (Stage.height / 2 - this._y) * 3.000000E-001;
    };
    bg._width = Stage.width;
    bg._height = Stage.height;
};
Stage.addListener(stageListener);
loading._x = Stage.width / 2;
loading._y = Stage.height / 2;
bg._width = Stage.width;
bg._height = Stage.height;
onEnterFrame = function ()
{
    var _loc2 = getBytesLoaded();
    var _loc1 = getBytesTotal();
    percent = Math.round(_loc2 / _loc1 * 100);
    loading.percenty = percent + "%";
    if (_loc2 == _loc1)
    {
        delete onEnterFrame;
        play ();
    } // end if
};

// [Action in Frame 2]
stop ();
var stageListener = new Object();
stageListener.onResize = function ()
{
    mainAnim.onEnterFrame = function ()
    {
        this._x = this._x + (Stage.width / 2 - this._x) * 3.000000E-001;
        this._y = this._y + (Stage.height / 2 - this._y) * 3.000000E-001;
    };
    bg._width = Stage.width;
    bg._height = Stage.height;
};
Stage.addListener(stageListener);
mainAnim._x = Stage.width / 2;
mainAnim._y = Stage.height / 2;
bg._width = Stage.width;
bg._height = Stage.height;