主题:  斑竹老师,请帮帮我

zhouhaihai

职务:普通成员
等级:1
金币:0.0
发贴:2
#12004/5/9 16:34:14
就是director里面如何实现这样的场景。滚动的画廊中,鼠标放到其中一幅画的上面,这幅画就放大,同时滚动的画廊静止下来。



5D荣誉斑竹

职务:普通成员
等级:4
金币:13.0
发贴:1504
#22004/5/10 18:02:52
这个效果用lingo是可以实现,不过我建议你用flash来做这个效果,然后再导入dr中,
用flash实现这个效果很容易,而且动态效果也更漂亮


閑闪互动多媒体

D计划-混沌

职务:管理员
等级:6
金币:15.2
发贴:3528
#32004/5/11 11:36:59
property sn
global pmove
on beginsprite me
sn=me.spritenum
pmove=1
end

on exitframe me
if pmove=1 then
sprite(sn).loch=sprite(sn).loch+1
end if
if sprite(sn).loch>=(the stageRight - the stageLeft)+sprite(sn).width/2 then
sprite(sn).loch=sprite(sn).loch-sprite(sn).width*7--7为滚动图片个数
end if
end
on mouseenter me
sprite(sn).width=sprite(sn).width+10
sprite(sn).height=sprite(sn).height+10
cursor 260
pmove=0
end
on mouseleave me
sprite(sn).width=sprite(sn).width-10
sprite(sn).height=sprite(sn).height-10
cursor 0
pmove=1
end