|
|
Source code |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
<krpano onstart="setuptour();"> <action name="setuptour"> set(step,1); set(idletime,4); set(events.onidle, autotour() ); </action> <action name="autotour"> oninterrupt(break); if (step == 1, wait(1);inc(step);); if (step == 2, loadpano(Augustusburg.xml);inc(step);); if (step == 3, wait(60); inc(step);); if (step == 4, wait(blend); inc(step);); if (step == 5, loadpano(Johanneskirchplatz_HDR_Auto.xml,null,MERGE,BLEND(2),action(ausblenden));inc(step);); if (step == 6, wait(30);inc(step);); if (step == 7, tourdone(autotour1.xml);set(step,1);); </action> ... |
|
|
Source code |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
<krpano version="1.0.8" > <include url="skin/defaultskin.xml" /> <action name="setuptour"> set(step,1); set(idletime,4); set(events.onidle, autotour1() ); </action> <action name="autotour1"> oninterrupt(break); if (step == 1, wait(5);inc(step);); if (step == 2, tween(view.hlookat, 220,4);inc(step);); if (step == 3, wait(1); inc(step);); if (step == 4, wait(blend); inc(step);); if (step == 5, tween(view.vlookat,-5,2);inc(step);); if (step == 6, wait(2);inc(step);); if (step == 7, tween(view.fov, 15,6);inc(step);); if (step == 8, wait(180); set(step,1);); </action> ... |
|
|
Source code |
1 |
<events onxmlcomplete="setuptour();" /> |
|
|
Source code |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
<krpano > <events onxmlcomplete="setuptour();" /> <action name="setuptour"> set(step,1); set(idletime,4); set(events.onidle, autotour() ); </action> <action name="autotour"> oninterrupt(break); if (step == 1, wait(1);inc(step);); if (step == 2, loadpano(Augustusburg.xml);inc(step);); if (step == 3, wait(60); inc(step);); if (step == 4, wait(blend); inc(step);); if (step == 5, loadpano(Johanneskirchplatz_HDR_Auto.xml,null,MERGE,BLEND(2),action(ausblenden));inc(step);); if (step == 6, wait(30);inc(step);); if (step == 7, tourdone(autotour1.xml);set(step,1);); </action> ... |
|
|
Source code |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
<krpano > <events onxmlcomplete="setuptour();" /> <action name="setuptour"> set(step,1); set(idletime,2); set(events.onidle, autotour()); </action> <action name="autotour"> oninterrupt(break); if (step == 1, wait(1);inc(step);); if (step == 2, tween(view.hlookat, 220,4);inc(step);); if (step == 3, wait(1); inc(step);); if (step == 4, wait(blend); inc(step);); if (step == 5, tween(view.vlookat,-5,2);inc(step);); if (step == 6, wait(2);inc(step);); if (step == 7, tween(view.fov, 15,6);inc(step);); if (step == 8, wait(180); set(step,1);); </action> ... |
|
|
Source code |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
<krpano > <events onxmlcomplete="setuptour();" /> <action name="setuptour"> set(step,1); set(idletime,4); set(events.onidle, autotour() ); </action> <action name="autotour"> oninterrupt(break); if (step == 1, wait(1);inc(step);); if (step == 2, loadpano(Augustusburg.xml);inc(step);); if (step == 3, wait(10); inc(step);); if (step == 4, tween(view.hlookat, 215,8);inc(step);); if (step == 5, wait(1); inc(step);); if (step == 6, tween(view.vlookat,-5,2);inc(step);); if (step == 7, wait(2);inc(step);); if (step == 8, tween(view.fov, 15,6);inc(step);); if (step == 9, wait(60); inc(step);); if (step == 10, wait(blend); inc(step);); if (step == 11, loadpano(wolkenstein.xml);inc(step);); if (step == 12, wait(60);set(step,1);); </action> </krpano> |
|
|
Source code |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
<krpano version="1.0.8" logkey="false" > <!-- default quality settings --> <display flash10="on" movequality="HIGH" stillquality="HIGH" movequality10="HIGH" stillquality10="HIGH" /> <!-- den view festlegen --> <view hlookat="0" vlookat="0" maxpixelzoom="5.0" fovmax="130" /> <!-- events: set the custom cursor on start and fullscreen events for button changes --> <events onxmlcomplete="setuppano();" onenterfullscreen="set(plugin[openfs].visible,false); set(plugin[closefs].visible,true); if(isandroid, set(plugin[android_openfs].visible,false); set(plugin[android_closefs].visible,true); ); " onexitfullscreen ="set(plugin[openfs].visible,true); set(plugin[closefs].visible,false); if(isandroid, set(plugin[android_openfs].visible,true); set(plugin[android_closefs].visible,false); ); " /> <!-- autorotate am 28.04.2011 eingefügt--> <autorotate enabled="true" waittime="2.0" accel="0.5" speed="5" horizon="0" tofov="100" /> <plugin name="logo_alt" url="../Schriftzug_Augustusburg_32x6cm.png" align="centerbottom" x="10" y="10" /> ... |
|
|
Source code |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
<krpano version="1.0.8.12" logkey="false" onstart="setuptour()">
<!--autotour-->
<action name="setuptour">
set(step,1);
set(idletime,3);
set(events.onidle, autotour() );
</action>
<action name="autotour">
oninterrupt(breakall());
if(step == 1, wait(2); inc(step); );
if(step == 2, lookto(-12,3,20,smooth(5,-5,5)); wait(2);inc(step); );
if(step == 3, loadpano(Guerlainpdlb0.xml,null,KEEPBASSE,BLEND(1)); lookat(20,0,70); wait(3); inc(step); );
if(step == 4, lookto(-35,0,55,smooth(5,-5,5)); wait(2);inc(step); );
if(step == 5, loadpano(Guerlainpdlb1.xml,null,KEEPBASSE,BLEND(1));lookat(10,0,30); wait(3); inc(step); );
if(step == 6, lookto(0,0,80,smooth(5,-5,5)); wait(2);inc(step); );
if(step == 7, lookto(-15,3,20,smooth(5,-5,5)); wait(2);inc(step); );
if(step == 8, loadpano(Guerlainpdlb2.xml,null,KEEPBASSE,BLEND(1)); lookat(-2,0,80); wait(3); inc(step); );
if(step == 9, lookto(-3,15,10,smooth(10,-10,5)); wait(1); inc(step); );
if(step == 10, loadpano(Guerlainpdlb9.xml,null,KEEPBASSE,BLEND(1)); lookat(147,0,90); wait(3); inc(step); );
if(step == 11, lookto(320,15,25,smooth(10,-10,5)); wait(1); inc(step); );
if(step == 12, loadpano(Guerlainpdlb4.xml,null,KEEPBASSE,BLEND(1)); lookat(-2,12,48); wait(3); inc(step); );
if(step == 13, lookto(-4,0,100,smooth(5,-5,5)); wait(3); inc(step); );
if(step == 14, lookto(20,0,100,smooth(5,-5,5)); wait(3); inc(step); );
if(step == 15, loadpano(Guerlainpdlb5.xml,null,KEEPBASSE,BLEND(1)); lookat(0,-2,90); wait(3); inc(step); );
if(step == 16, lookto(-35,0,50,smooth(5,-5,5)); wait(3); inc(step); );
if(step == 17, loadpano(Guerlainpdlb8.xml,null,KEEPBASSE,BLEND(1)); lookat(-60,5,80); wait(2); inc(step); );
if(step == 18, lookto(60,-5,90,smooth(5,-5,5)); wait(2);inc(step); );
if(step == 19, lookto(150,10,40,smooth(5,-5,5)); wait(2);inc(step); );
if(step == 20, loadpano(Guerlainpdlb10.xml,null,KEEPBASSE,BLEND(1)); lookat(130,10,60); wait(2); inc(step); );
if(step == 21, lookto(220,0,70,smooth(5,-5,5)); wait(2);inc(step); );
if(step == 22, loadpano(Guerlainpdlb7.xml,null,KEEPBASSE,BLEND(1)); lookat(10,5,20); wait(2); inc(step); );
if(step == 23, lookto(3,-3,80,smooth(5,-5,5)); wait(2);inc(step); );
if(step == 24, loadpano(Guerlainpdlb3.xml,null,KEEPBASSE,BLEND(1)); lookat(10,0,50); wait(3); setuptour(); );
</action>
|