Lieber Besucher, herzlich willkommen bei: krpano.com Forum. Falls dies Ihr erster Besuch auf dieser Seite ist, lesen Sie sich bitte die Hilfe durch. Dort wird Ihnen die Bedienung dieser Seite näher erläutert. Darüber hinaus sollten Sie sich registrieren, um alle Funktionen dieser Seite nutzen zu können. Benutzen Sie das Registrierungsformular, um sich zu registrieren oder informieren Sie sich ausführlich über den Registrierungsvorgang. Falls Sie sich bereits zu einem früheren Zeitpunkt registriert haben, können Sie sich hier anmelden.
Benutzerinformationen überspringen
Wohnort: Netherlands
Beruf: Krpano custom coding / Virtual Tours / Photography / Musician / Recording engineer
|
|
Quellcode |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
<hotspot name="spot1" style="hotspot_ani_white" ath="40" atv="10.9" onclick="lookto(40, 10, 20, smooth(45,45,60)); loadscene(scene_alberto, null, MERGE, BLEND(2)); lookat(0, 0, 58); wait(LOAD); oninterrupt(break); wait(BLEND); lookto(30, 8, 97, smooth(45,45,60)); " /> |
|
|
Quellcode |
1 2 3 4 |
<action name="load2">
loadpano(../local/2.xml,null,MERGE,BLEND(1));
</action>
|
|
|
Quellcode |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
<action name="moveto3"> action(startloading); looktohotspot(hs7,30,smooth(60,60,60)); action(load3); lookat(80,0,55); oninterrupt( action(lookinterrupt) ); wait(load); wait(blend); lookto(-124,0,50, smooth(25,25,25)); action(loadingdone); </action> |
: https://pame.virtualtuur.com
|
|
Quellcode |
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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 |
<krpano version="1.0.8" onstart="startup();"> <action name="startup"> <!-- load the first scene --> loadscene(get(scene[0].name), null, MERGE); <!-- build the thumbnails (remove the next line to remove the thumbnails) --> buildthumbs(); </action> <!-- disable the progress bar --> <progress showload="none" showwait="none" /> <scene name="pano1" title="" onstart="" thumburl="pano1.tiles/thumb.jpg"> <view hlookat="50" vlookat="25" fovtype="MFOV" fov="120" fovmin="100" fovmax="120" /> <preview url="pano1.tiles/preview.jpg" /> <image type="CUBE"> <left url="pano1.tiles/mobile_l.jpg" /> <front url="pano1.tiles/mobile_f.jpg" /> <right url="pano1.tiles/mobile_r.jpg" /> <back url="pano1.tiles/mobile_b.jpg" /> <up url="pano1.tiles/mobile_u.jpg" /> <down url="pano1.tiles/mobile_d.jpg" /> <mobile> <left url="pano1.tiles/mobile_l.jpg" /> <front url="pano1.tiles/mobile_f.jpg" /> <right url="pano1.tiles/mobile_r.jpg" /> <back url="pano1.tiles/mobile_b.jpg" /> <up url="pano1.tiles/mobile_u.jpg" /> <down url="pano1.tiles/mobile_d.jpg" /> </mobile> </image> </scene> <scene name="pano2" title="" onstart="" thumburl="pano2.tiles/thumb.jpg"> <view hlookat="-47" vlookat="13" fovtype="MFOV" fov="120" fovmin="100" fovmax="120" /> <preview url="pano2.tiles/preview.jpg" /> <image type="CUBE"> <left url="pano2.tiles/mobile_l.jpg" /> <front url="pano2.tiles/mobile_f.jpg" /> <right url="pano2.tiles/mobile_r.jpg" /> <back url="pano2.tiles/mobile_b.jpg" /> <up url="pano2.tiles/mobile_u.jpg" /> <down url="pano2.tiles/mobile_d.jpg" /> <mobile> <left url="pano2.tiles/mobile_l.jpg" /> <front url="pano2.tiles/mobile_f.jpg" /> <right url="pano2.tiles/mobile_r.jpg" /> <back url="pano2.tiles/mobile_b.jpg" /> <up url="pano2.tiles/mobile_u.jpg" /> <down url="pano2.tiles/mobile_d.jpg" /> </mobile> </image> </scene> <!-- actions --> <!-- thumbnail actions begin (remove the 'buildthumbs()' call in the onstart event to remove the thumbs) --> <action name="buildthumbs"> if(%1 != NEXT, set(i,0)); if(i LT scene.count, copy(thumb, scene[get(i)].thumburl); txtadd(thumbname,'thumb_',get(i)); addplugin(get(thumbname)); set(plugin[get(thumbname)].url, get(thumb)); set(plugin[get(thumbname)].keep, true); set(plugin[get(thumbname)].align, leftbottom); set(plugin[get(thumbname)].width, 40); set(plugin[get(thumbname)].height, 40); set(plugin[get(thumbname)].x, 10); set(plugin[get(thumbname)].y, 10); mul(plugin[get(thumbname)].x, i,3); mul(plugin[get(thumbname)].y, i,3); add(plugin[get(thumbname)].x, 5); add(plugin[get(thumbname)].y, 5); copy(plugin[get(thumbname)].xsmall, plugin[get(thumbname)].x); copy(plugin[get(thumbname)].ysmall, plugin[get(thumbname)].y); add(plugin[get(thumbname)].zorder, 100, i); set(plugin[get(thumbname)].effect,glow(0xFFFFFF,1.0,2,10000)); set(plugin[get(thumbname)].jsborder,'1px solid #FFFFFF'); copy(plugin[get(thumbname)].thumbpos, i); set(plugin[get(thumbname)].linkedscene, get(scene[get(i)].name) ); set(plugin[get(thumbname)].onclick, openthumbs() ); inc(i); buildthumbs(NEXT); ); </action> <action name="openthumb"> if(%2 != NEXT, set(pos,0); copy(curpos, plugin[%1].thumbpos); set(xdst, 0); set(ydst, 0); ); if(pos LT curpos, inc(pos); inc(ydst,90); sub(ymax, stageheight, 100); if(ydst GT ymax, inc(xdst,90);set(ydst,0); ); openthumb(%1,NEXT); , add(xdst,10); add(ydst,10); tween(plugin[%1].x, get(xdst) ); tween(plugin[%1].y, get(ydst) ); tween(plugin[%1].width, 80); tween(plugin[%1].height, 80); ); </action> <action name="closethumb"> tween(plugin[%1].x, get(plugin[%1].xsmall)); tween(plugin[%1].y, get(plugin[%1].ysmall)); tween(plugin[%1].width, 40); tween(plugin[%1].height, 40); </action> <action name="openthumbs"> if(%1 != NEXT, set(i,0); set(events.onclick, set(events.onclick,null); delayedcall(0.1, closethumbs() ); ); ); if(i LT scene.count, txtadd(thumbname,'thumb_',get(i)); openthumb(get(thumbname)); set(plugin[get(thumbname)].onclick, set(events.onclick,null); closethumbs(); loadscene(get(linkedscene),null,MERGE|KEEPVIEW,BLEND(5)); ); inc(i); openthumbs(NEXT); ); </action> <action name="closethumbs"> if(%1 != NEXT, set(i,0)); if(i LT scene.count, txtadd(thumbname,'thumb_',get(i)); closethumb(get(thumbname)); set(plugin[get(thumbname)].onclick, openthumbs() ); inc(i); closethumbs(NEXT); ); </action> <!-- thumbnail actions end --> </krpano> |