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

推荐订阅源

宝玉的分享
宝玉的分享
NISL@THU
NISL@THU
E
Exploit-DB.com RSS Feed
L
LINUX DO - 热门话题
L
Lohrmann on Cybersecurity
K
Kaspersky official blog
Project Zero
Project Zero
Cisco Talos Blog
Cisco Talos Blog
T
The Exploit Database - CXSecurity.com
P
Palo Alto Networks Blog
C
CXSECURITY Database RSS Feed - CXSecurity.com
T
Threatpost
S
Schneier on Security
G
GRAHAM CLULEY
The Hacker News
The Hacker News
T
Threat Research - Cisco Blogs
Scott Helme
Scott Helme
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
P
Privacy & Cybersecurity Law Blog
C
Cyber Attacks, Cyber Crime and Cyber Security
Cyberwarzone
Cyberwarzone
C
CERT Recently Published Vulnerability Notes
T
Tor Project blog
AWS News Blog
AWS News Blog
Simon Willison's Weblog
Simon Willison's Weblog
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
爱范儿
爱范儿
P
Privacy International News Feed
云风的 BLOG
云风的 BLOG
P
Proofpoint News Feed
S
Securelist
G
Google Developers Blog
The Last Watchdog
The Last Watchdog
Google Online Security Blog
Google Online Security Blog
美团技术团队
F
Fortinet All Blogs
小众软件
小众软件
Recorded Future
Recorded Future
V
Visual Studio Blog
B
Blog RSS Feed
H
Help Net Security
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
Google DeepMind News
Google DeepMind News
Blog — PlanetScale
Blog — PlanetScale
博客园 - 聂微东
Stack Overflow Blog
Stack Overflow Blog
Martin Fowler
Martin Fowler
Latest news
Latest news
Spread Privacy
Spread Privacy
H
Heimdal Security Blog

博客园 - 吹吹风----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;