Search results
Search results 1-20 of 119.
Just set the boxes visibility to false in the xml and let it come back with onclick(set(layer[layername].visible, true));
Oh sure - boy, why do I always miss the easiest solutions? I was already going to hard code some view limits depending on the state. Thanks for disentangling my brain!
Hi, I'd like to have a combination of limitview.fullrange and limitview.range for a flat panorama. When starting the Panorama it should be covering the whole screen just like it does with range. However I want that the user is allowed to zoom out to see the complete image like with fullrange. How can I do this? Thank you!
Onhover is for mouse only. Use the touch events for mobile devices. However "hover" on mobile devices like "slide a finger over something" isn't really a concept in use. For the iframe link try _parent instead of _self.
So you have to use lookat() instead of autorotate.
Sure, just try it and let us know, when we can help at some point.
Quoted from "Suso Barral" Autorotation with atutomatic scene change So you could go with: - autorotate.start() - events.onautorotateoneround which actually includes this hint in the documentation you couldbe intrested in: That could be used to switch to the next pano in the tour - e.g. for 'automatic tours'. This can look nice when using the KEEPMOVING flag to blend between the panos during the automatic rotation. and - loadscene() where you could just iterate through a scene array to get a ful...
Quoted from "Suso Barral" What possible solutions are there to perform a scheduled autour? Plugins, codes, etc. My goal is to make small videos of the 360 tours created in Krpano to use them on networks like Instagram Best. Suso What exactly do you want to achive? Autorotation + automatic scene change?
Tween a value and use the Update function to set the border with the tweening value on every step. Might not be the most performant thing maybe though.
So here is my temporary solution - until someone comes up with something better: 1. Set scrolling() function as onscroll attribute in scrollarea layer Source code 1 2 3 4 5 6 <layer name="scrollarea" type="scrollarea" ... onscroll="scrolling()" ... </layer> 2. Copy millisecond "timestamp" into variable last_scroll on every scroll movement in the scrolling() function Source code 1 2 3 <action name="scrolling"> set(last_scroll, *timertick); </action> 3. Replace link in the text with onclick="open_...
Hi Klaus, hi Forum, there is something I can't find a solution for. I use a textlayer with layertype scrollarea. There is a long text with some links in this scrollarea. On mobile device one tends to just touch anywhere in the area and swipe there to scroll up or down. Unfortunately it often happens that you touch a link. What happens is that as soon as you release your finger from the screen the link will be opend. Is there any way to prevent opening of links when these are just touched while s...
Oh, i love how we can drag around the street names
Wenn du doch die einzelnen Bilder hast, warum solltest du die hochqualitative und technisch ausgereifte Methode gegen ein nicht dafür ausgelegtes und qualitativ viel schlechters Video-Gefrickel tauschen wollen?
So etwa? https://www.visionangular.com/visitas_vi…bject/demo.html Wären dann natürlich 144 Fotos, kein Video. Qualitativ dafür natürlich unschlagbar. Grüße
"visible" is not defined. So it is interpreted as "false" and hence the hotspots are set to be visible. You may just add a variable to have the state of the visibilty and check if the variable is true or false in the if.
Klaus is working on this and there should be new Version with an advanced GUI soon. However you don't need to code for krpano. Only simple XML you can easily manage with some reading and googling. Actually you can achive almost everything with some copy and paste.
Have you replaced the skin files/folder with those of the new version as well?
Quoted from "yannoch" and finaly... i cant hide right context menu. i have edited the contextmenu.xml like that "<krpano> <contextmenu fullscreen="false" versioninfo="false"> </contextmenu></krpano>" but the menu still present. You have to pay some 300 Euro first to be able to hide it. https://krpano.com/buy/brandingfree/
I really would't go for mailto:. This is kinda year 2000 stuff. When have you last seen mailto-links somewhere? Many people don't even have mail clients on theire device as so many web based services are in use. In JS you could try: Source code 1 text = text.replace(/(<div>|<\/div>)/g, "");
What are you using to send the mail? JS? PHP? Whatever, use this to replace what you don't like.