Did you move just tour.xml or the whole folder?
Posts by Enderr
-
-
Working fine on my Android with Chrome version 65.
-
-
Hmm yeah that is interesting.
After reading some more, I suspect you might be able to replicate the Panotour way by doing the same or similar to what you suggested: adding a partial video sphere as a distorted hotspot and lining it up with the pano perfectly, but I'm out of my depth here. I'm not a photographer, just a web developer.
Interested to learn more. -
-
By using the video player plugin and adding the video as panoramic image code to your XML.
Code
Display More<plugin name="video" url.flash="videoplayer.swf" url.html5="videoplayer.js" videourl="video.m4v|video.webm" posterurl="videoposter.jpg" panovideo="true" pausedonstart="false" loop="false" volume="1.0" onvideoready="" onvideoplay="" onvideopaused="" onvideocomplete="" onerror="" /> <image hfov="360" vfov="180"> <sphere url="plugin:video" /> </image>
-
Thank you!
This works very well. -
Thank you very much for the Krpano side menu plugin! I've been using it in a recent project, and would like to get some animation going with the opening and closing of the menu. I'm wondering if you could give me some advice on how to get this going.
I've tried using the tween function to animate the width of menu_settings.background_width in the slide_menu_right and slide_menu_left actions. I know that there is probably much more involved with the process of animating this menu (or I'm not on the right track at all), but I'm a beginner to Krpano, and so am experimenting with what I can.Below is an example of my use of the tween function:
Quote<action name="slide_menu_left">
tween(menu_settings.background_width, 0, 2);
set(new_x,get(menu_settings.background_width));mul(new_x,-1);set(plugin[menu_background].x,get(new_x));delayedcall(0.1,set(plugin[btn_menu].visible,true););
</action>