别人的答案,只能实现反方向移动,第2个功能是想不了
给你代码自己加在图片的影片剪辑上就行了,图片必须比场景要大,才可以,我是以场景为窗口的。
onClipEvent (load) {
this._temp_spd = 0.1;//这里改速度 0.01~0.9
}
onClipEvent (enterFrame) {
this._x += (((Stage.width-this._width)*this._parent._xmouse/Stage.width)-this._x)*this._temp_spd;
this._y += (((Stage.height-this._height)*this._parent._ymouse/Stage.height)-this._y)*this._temp_spd;
}