include your 'dark shadow' image and add the wanted blendmode:The lowres blurred preview of the pano is showing with Dark Shadow mask effect.
|
|
Source code |
1 |
<plugin name="mask" url="darkmask.jpg" blendmode="multiply" width="100%" height="100%" enabled="false" /> |
this is not possibleNo original pano tiles popping up as they are loaded.
just add your logo image:Behind the loading spinner a small image file shows up to keep viewers teased while waiting while loading the pano. For example company logo
|
|
Source code |
1 |
<plugin name="logo" url="logo.png" align="center" enabled="false" /> |
for finished loading there is the onloadcomplete event - there change the alpha of the mask to 0 and finally remove the mask image:Slow fade from Dark Shadow masked preview to normal view and the small image file fades out as well once the loading has finished
|
|
Source code |
1 |
<events onloadcomplete="tween(plugin[mask].alpha, 0, 1.0, default, removeplugin(mask));" /> |
add your copyright image but invisible (alpha=0) at start:Clickable copyright text fades in one of the corners (not during loading, but into the original pano)
|
|
Source code |
1 |
<plugin name="copyright" url="copyright.png" align="rightbottom" alpha="0" enabled="false" /> |
|
|
Source code |
1 2 3 |
<events onloadcomplete="tween(plugin[mask].alpha, 0, 1.0, default, removeplugin(mask));
tween(plugin[copyright].alpha, 1.0, 1.0, default);"
/>
|