Dear visitor, welcome to krpano.com Forum. If this is your first visit here, please read the Help. It explains in detail how this page works. To use all features of this page, you should consider registering. Please use the registration form, to register here or read more information about the registration process. If you are already registered, please login here.
|
|
Source code |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
<events onloadcomplete="action(autotour);"/> <action name="autotour"> wait(5); loadpano(rosmarins_led_party_blau.xml,null,KEEPBASE|NOPREVIEW,BLEND(1)); wait(load); wait(5); loadpano(rosmarins_led_party_gruen.xml, null, MERGE, BLEND(1)); wait(load); wait(5); loadpano(rosmarins_led_party_4f.xml, null, MERGE, BLEND(1)); wait(load); wait(5); loadpano(rosmarins_led_party_lila.xml, null, MERGE, BLEND(1)); </action> |
This post has been edited 2 times, last edit by "360x180.ch" (Apr 3rd 2012, 10:22pm)
This post has been edited 1 times, last edit by "360x180.ch" (Apr 1st 2012, 2:15am)
|
|
Source code |
1 2 3 4 5 6 7 8 9 10 11 12 |
<events onloadcomplete="action(autotour);"/> <action name="autotour"> wait(2); loadpano(rosmarins_led_party_blau.xml,null,NOPREVIEW,BLEND(6)); delayedcall (10, loadpano(rosmarins_led_party_gruen.xml, null, MERGE, BLEND(6))); delayedcall (18, loadpano(rosmarins_led_party_4f.xml, null, MERGE, BLEND(6))); delayedcall (26, loadpano(rosmarins_led_party_lila.xml, null, MERGE, BLEND(6))); delayedcall (35, loadpano(rosmarins_led_party_rot.xml, null, MERGE, BLEND(6))); </action> |
This post has been edited 1 times, last edit by "360x180.ch" (Apr 3rd 2012, 10:22pm)
|
|
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 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 |
<!--
<!--
krpano 1.0.8
- interactive hotspot area example
- a polygonal hotspot is used as 'hitarea' for fading in a image hotspot
-->
<krpano version="1.0.8" onstart="start();">
<!-- text styles for startup text and onhover text -->
<textstyle name="infostyle"
origin="center" edge="center" yoffset="-100" textalign="center" background="false" border="false"
fontsize="40" textcolor="0xFFFFFF" bold="false" effect="glow(0xFFFFFF,0.7,4,2);glow(0x000000,1,4,2);dropshadow(3,45,0x000000,2,0.6);"
showtime="2.0" fadeintime="1.0" fadetime="1.0"
/>
<action name="start">
showtext('[b][i]krpano[br]interactive hotspot area example[/i][/b]', infostyle);
delayedcall(4.0, showtext('hover the red car', infostyle); );
</action>
<view hlookat="0" vlookat="0" fov="90" fovmax="120" />
<image>
<left url="rosmarins_led_party_gruen_l.jpg" />
<front url="rosmarins_led_party_gruen_f.jpg" />
<right url="rosmarins_led_party_gruen_r.jpg" />
<back url="rosmarins_led_party_gruen_b.jpg" />
<up url="rosmarins_led_party_gruen_u.jpg" />
<down url="rosmarins_led_party_gruen_d.jpg" />
</image>
<hotspot name="rot"
url="rosmarins_led_party_rot_f.jpg"
enabled="false"
zorder="1"
distorted="true"
ath="0"
atv="0"
width="1000"
height="1000"
edge="center"
ox="0"
oy="0"
alpha="0.0"
onloaded="delayedcall (5,tween (alpha,1,7))"
/>
<hotspot name="blau"
url="rosmarins_led_party_blau_f.jpg"
enabled="false"
zorder="1"
distorted="true"
ath="0"
atv="0"
width="1000"
height="1000"
edge="center"
ox="0"
oy="0"
alpha="0.0"
onloaded="delayedcall (13,tween (alpha,1,7)); delayedcall (13,tween(hotspot[rot].alpha, 0,7))"
/>
<hotspot name="gruen"
url="rosmarins_led_party_gruen_f.jpg"
enabled="false"
zorder="1"
distorted="true"
ath="0"
atv="0"
width="1000"
height="1000"
edge="center"
ox="0"
oy="0"
alpha="0.0"
onloaded="delayedcall (21,tween (alpha,1,7)); delayedcall (21,tween(hotspot[blau].alpha, 0,7))"
/>
<!-- Editor -->
<plugin name="editor" url="../plugins/editor.swf" />
<plugin name="options" url="../plugins/options.swf" />
</krpano>
|
This post has been edited 2 times, last edit by "360x180.ch" (Apr 3rd 2012, 9:55pm)
|
|
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 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 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 |
<krpano version="1.0.8" onstart="start(); ">
<events onloadcomplete="delayedcall(1.0, normalview());" />
<include url="../skin/defaultskin.xml" />
<plugin name="cameracontrols" url="../plugins/cameracontrols.swf" zoom_refresh_fps="10" keep="true" align="leftbottom" x="-97
" y="2%" scale="1"/>
<!-- text styles for startup text and onhover text -->
<textstyle name="infostyle"
origin="center" edge="center" yoffset="-39" textalign="center" background="false" border="false"
fontsize="40" textcolor="0xFFFFFF" bold="false"
effect="glow(0xFFFFFF,0.7,4,2);glow(0x000000,1,4,2);dropshadow(3,45,0x000000,2,0.6);"
showtime="3.0" fadeintime="1.0" fadetime="1.0"
/>
<textstyle name="hsbg"
font="Arial" background="false" border="false"
fontsize="20" textcolor="0xFFFFFF" bold="false"
effect="glow(0xFFFFFF,0.7,4,2);glow(0x000000,1,4,2);dropshadow(3,45,0x000000,2,0.6);"
fadeintime="0.2" fadetime="1.0"
/>
<action name="start">
5 - Layer Blendmix [br]
</action>
<image>
<left url="rosmarins_led_party_blau_l.jpg" />
<front url="rosmarins_led_party_blau_f.jpg" />
<right url="rosmarins_led_party_blau_r.jpg" />
<back url="rosmarins_led_party_blau_b.jpg" />
<upurl="rosmarins_led_party_blau_u.jpg" />
<down url="rosmarins_led_party_blau_d.jpg" />
</image>
<!-- Startsequenz Intro -->
<view stereographic="false"
fisheye="0.0"
fov="105"
fovmax="160"
hlookat="-106"
vlookat="0"/>
<action name="normalview">
tween(view.hlookat, -59,4, easeInOutQuad );
tween(view.vlookat, 0, 4, easeInOutQuad );
tween(view.fov,92, 4, easeInOutQuad, WAIT);
delayedcall(1,action(Farbenmix));
</action>
<!-- Frontwürfel (f)-->
<hotspot name="gruen"
url="rosmarins_led_party_gruen_f.jpg"
enabled="false"
zorder="1"
distorted="true"
ath="0"
atv="0"
width="1000"
height="1000"
edge="center"
ox="0"
oy="0"
alpha="0.0"
visible="false"
onloaded=""
/>
<hotspot name="lila"
url="rosmarins_led_party_lila_f.jpg"
enabled="false"
zorder="2"
distorted="true"
ath="0"
atv="0"
width="1000"
height="1000"
edge="center"
ox="0"
oy="0"
alpha="0.0"
visible="false"
onloaded=""
/>
<hotspot name="rot"
url="rosmarins_led_party_rot_f.jpg"
enabled="false"
zorder="3"
distorted="true"
ath="0"
atv="0"
width="1000"
height="1000"
edge="center"
ox="0"
oy="0"
alpha="0.0"
visible="false"
onloaded=""
/>
<!-- Linker Würfel (l)-->
<hotspot name="gruen2"
url="rosmarins_led_party_gruen_l.jpg"
enabled="false"
zorder="1"
distorted="true"
ath="-90"
atv="0"
width="1000"
height="1000"
edge="center"
ox="0"
oy="0"
alpha="0.0"
visible="false"
onloaded=""
/>
<hotspot name="lila2"
url="rosmarins_led_party_lila_l.jpg"
enabled="false"
zorder="2"
distorted="true"
ath="-90"
atv="0"
width="1000"
height="1000"
edge="center"
ox="0"
oy="0"
alpha="0.0"
visible="false"
onloaded=""
/>
<hotspot name="rot2"
url="rosmarins_led_party_rot_l.jpg"
enabled="false"
zorder="3"
distorted="true"
ath="-90"
atv="0"
width="1000"
height="1000"
edge="center"
ox="0"
oy="0"
alpha="0.0"
onloaded=""
visible="false"
onloaded=""
/>
<action name="Farbenmix_gruen">
tween(hotspot[lila].alpha, 0,3);
set (hotspot[rot].alpha, 0);
set (hotspot[rot2].alpha, 0);
set (hotspot[rot].visible, false);
set (hotspot[rot2].visible, false);
set (hotspot[gruen].visible, true);
set (hotspot[gruen2].visible, true);
tween(hotspot[gruen].alpha, 1,3);
tween(hotspot[gruen2].alpha, 1,3);
delayedcall(7, action (Farbenmix_lila));
</action>
<action name="Farbenmix_lila">
set (hotspot[lila].visible, true);
set (hotspot[lila2].visible, true);
tween(hotspot[lila].alpha, 1,3);
tween(hotspot[lila2].alpha, 1,3);
delayedcall(7, action (Farbenmix_rot));
</action>
<action name="Farbenmix_rot">
set (hotspot[gruen].alpha, 0);
set (hotspot[gruen2].alpha, 0);
set (hotspot[gruen].visible, false);
set (hotspot[gruen2].visible, false);
set (hotspot[rot].visible, true);
set (hotspot[rot2].visible, true);
tween(hotspot[rot].alpha, 1,3);
tween(hotspot[rot2].alpha, 1,3);
delayedcall(7, action (Farbenmix_blau));
</action>
<action name="Farbenmix_blau">
set (hotspot[lila].alpha, 0);
set (hotspot[lila2].alpha, 0);
set (hotspot[lila].visible, false);
set (hotspot[lila2].visible, false);
tween(hotspot[rot].alpha, 0,3);
tween(hotspot[rot2].alpha, 0,3);
delayedcall(7, action (Farbenmix_gruenrot));
</action>
<action name="Farbenmix_gruenrot">
set (hotspot[rot2].alpha, 0);
set (hotspot[rot2].visible, false);
set (hotspot[gruen2].visible, true);
tween(hotspot[gruen2].alpha, 1,3);
tween(hotspot[rot].alpha, 1,3);
delayedcall(7, action (Farbenmix_blaulila));
</action>
<action name="Farbenmix_blaulila">
tween(hotspot[rot].alpha, 0,3);
tween(hotspot[gruen2].alpha, 0,3);
set (hotspot[lila].visible, true);
tween(hotspot[lila].alpha, 1,3);
delayedcall(7, action (Farbenmix_gruen));
</action>
<!-- Lensflares -->
<lensflare name="lf0" set="USER1" visible="true" ath="254.3" atv="-27.6" size="0.30" blind="0.0" blindcurve="4.00" />
<lensflare name="lf1" set="USER1" visible="true" ath="353.5" atv="-17.3" size="0.30" blind="0.0" blindcurve="4.00" />
<lensflare name="lf2" set="USER1" visible="true" ath="47" atv="-54.5" size="0.5" blind="0.2" blindcurve="4.00" />
<lensflareset name="USER1" url="../flare2.jpg">
<flare name="f01" pixsize="128" pixupos="0" pixvpos="0" color="0xffffff" pos="+0.00" scale="0.130"/>
<flare name="f02" pixsize="128" pixupos="256" pixvpos="0" color="0x200a05" pos="-0.40" scale="0.100"/>
<flare name="f03" pixsize="128" pixupos="128" pixvpos="0" color="0x967878" pos="+0.30" scale="0.100"/>
<flare name="f04" pixsize="128" pixupos="256" pixvpos="0" color="0x2b2d14" pos="+0.60" scale="0.092"/>
<flare name="f05" pixsize="128" pixupos="128" pixvpos="0" color="0x46140a" pos="+0.40" scale="0.050"/>
<flare name="f06" pixsize="64" pixupos="512" pixvpos="0" color="0x142800" pos="+0.25" scale="0.018"/>
</lensflareset>
</krpano>
|
This post has been edited 1 times, last edit by "360x180.ch" (Apr 4th 2012, 10:39pm)
Krpano hört doch nie auf mich zu verblüffen!