首页 > 代码库 > 制作连接器步骤
制作连接器步骤
1. krpano注册
2 拆分360全景图片工具
.
3.生成krpano文件,在index.xml修改参数,图片放在panos
4.打点的坐标显示<control keycodesin="" keycodesout="" />
<plugin name="hotspotinfo" keep="true"
url="%SWFPATH%/plugins/textfield.swf"
html="drag the hotspots..."
css="font-family:Courier;"
border="false"
selectable="true"
align="left" y="-100"
width="200"
height="80"
/>
<action name="draghotspot">
<![CDATA[
if(%1 != dragging,
spheretoscreen(ath, atv, hotspotcenterx, hotspotcentery);
sub(drag_adjustx, mouse.stagex, hotspotcenterx);
sub(drag_adjusty, mouse.stagey, hotspotcentery);
draghotspot(dragging);
,
if(pressed,
sub(dx, mouse.stagex, drag_adjustx);
sub(dy, mouse.stagey, drag_adjusty);
screentosphere(dx, dy, ath, atv);
copy(print_ath, ath);
copy(print_atv, atv);
roundval(print_ath, 3);
roundval(print_atv, 3);
txtadd(plugin[hotspotinfo].html, ‘<hotspot name="‘,get(name),‘"[br] ath="‘,get(print_ath),‘"[br] atv="‘,get(print_atv),‘"[br] ...[br] />‘);
delayedcall(0, draghotspot(dragging) );
);
);
]]>
</action>
在对应场景上加个ondown="draghotspot(scene_8)"
知识资料:
官网网址:http://www.krpano360.com/
学习网址:http://blog.csdn.net/panorama360/article/details/38456741
制作连接器步骤