首页 > 学习笔记 > picturescroll鼠标滚动图片
2007
03-01

picturescroll鼠标滚动图片

uploads/200804/02_120030_picture_scroll.swf
在第一帧上加入如下代码.picture为图片剪辑,dragControl为一个空的影片剪辑参照.

 引用内容
stop();
//影片宽高
var widthx=400;
var heighx=300;
//循环
onEnterFrame=function(){
//拖动参照移动,只要是利用它的坐标
onMouseMove=function(){
startDrag("dragControl", true);
}
trace(_root.dragControl._x);
// 图片移动
_root.picture._x+=(dragControl._x*(-1)-picture._x)*0.2;
// 结束位置条件
if (dragControl._x>=widthx) {
_root.picture._x=-picture._width;

}
//开始位置条件
if (dragControl._x<=-1) {
_root.picture._x=-1;
}
}

程序代码
picture_scroll.rar

最后编辑:
作者:admin
这个作者貌似有点懒,什么都没有留下。

留下一个回复