| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 622 人关注过本帖
标题:这个代码特效如何显示的呢?我找了 很久都 没有找到的
只看楼主 加入收藏
liaohongchu
Rank: 1
等 级:新手上路
帖 子:133
专家分:0
注 册:2008-4-25
结帖率:78.72%
收藏
已结贴  问题点数:10 回复次数:2 
这个代码特效如何显示的呢?我找了 很久都 没有找到的
http://www.
有很多张图片 转动像一个圆圈的那个 我下载FLASH但里面是空的 好像还有什么代码 但我找不到代码是在哪里的呢
搜索更多相关主题的帖子: 代码 特效 
2009-09-29 09:39
aspic
Rank: 17Rank: 17Rank: 17Rank: 17Rank: 17
等 级:贵宾
威 望:51
帖 子:2258
专家分:8050
注 册:2008-2-18
收藏
得分:10 
程序代码:
// Action script... 
 
// [Action in Frame 1] 
function mover() 
{ 
    this._x = Math.cos(this.angle) * radiusX + centerX; 
    this._y = Math.sin(this.angle) * radiusY + centerY; 
    var _loc2 = this._y / (centerY + radiusY); 
    this._xscale = this._yscale = _loc2 * 100; 
    this.angle = this.angle + this._parent.speed; 
    this.swapDepths(Math.round(this._xscale) + 100); 
} // End of the function 
stop (); 
var folder = "images/";     //图片文件夹
var total; 
var radiusX = 310; 
var radiusY = 90; 
var centerX = 400; 
var centerY = 150; 
var speed = 5.000000E-003; 
tn_group_mc._visible = false; 
fm_label.text = ""; 
fm_url.text = ""; 
var xml = new XML(); 
xml.ignoreWhite = true; 
xml.onLoad = function () 
{ 
    var _loc4 = this.firstChild.childNodes; 
    total = _loc4.length; 
    for (var _loc3 = 0; _loc3 < total; ++_loc3) 
    { 
        var _loc2 = tn_group_mc.duplicateMovieClip("tn" + _loc3, _loc3); 
        _loc2.angle = _loc3 * (6.283185E+000 / total); 
        _loc2.onEnterFrame = mover; 
        _loc2.tn_mc.inner.loadMovie(folder + _loc4[_loc3].attributes.filename); 
        _loc2.tn_reflection_mc.inner.loadMovie(folder + _loc4[_loc3].attributes.filename); 
        _loc2.fm_label = _loc4[_loc3].attributes.label; 
        _loc2.fm_url = _loc4[_loc3].attributes.url; 
        _loc2.fm_button.onRollOver = function () 
        { 
            fm_label.text = "" + this._parent.fm_label; 
            fm_url.text = "URL: " + this._parent.fm_url; 
        }; 
        _loc2.fm_button.onRollOut = function () 
        { 
            fm_label.text = ""; 
            fm_url.text = ""; 
        }; 
        _loc2.fm_button.onRelease = function () 
        { 
            getURL(this._parent.fm_url, ""); 
        }; 
    } // end of for 
}; 
xml.load("xml/thumbnails.xml");     //读取xml
this.onMouseMove = function () 
{ 
    speed = (this._xmouse - centerX) * 1.000000E-004; 
}; 
xml内容
程序代码:
<thumbnails> 
  <thumbnail filename="a/01.jpg" label="" url="http://www. />  
  <thumbnail filename="a/02.jpg" label="" url="http://www. />  
  <thumbnail filename="a/03.jpg" label="" url="http://www. />  
  <thumbnail filename="a/04.jpg" label="" url="http://www. />  
  <thumbnail filename="a/05.jpg" label="" url="http://www. />  
  <thumbnail filename="a/06.jpg" label="" url="http://www. />  
  <thumbnail filename="a/07.jpg" label="" url="http://www. />  
  <thumbnail filename="a/08.jpg" label="" url="http://www. />  
  </thumbnails>
2009-09-29 10:02
liaohongchu
Rank: 1
等 级:新手上路
帖 子:133
专家分:0
注 册:2008-4-25
收藏
得分:0 
谢谢。我也找到那个代码了  和你写的差不多  谢谢了
2009-10-11 21:36
快速回复:这个代码特效如何显示的呢?我找了 很久都 没有找到的
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.049146 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved