Suchergebnisse
Suchergebnisse 1-6 von insgesamt 6.
No more html file linking to google drive, I followed your advice and changed to an iframe, so now I'm just using the html file stored on drive. Fixed the problem I was having with the iframe and everything works fine now! Only one small thing that I've noticed is that using an iframe makes the text blurry. It isn't something horrible and I supposed it's the way the content of the iframe is being rendered. But I can live with that :) Thank you!
Thank you for your answer Sachagriffin. It doesn't work yet: but at least I've fixed the url problem for the crossdomain.xml, thank you for pointing me that out. About using an iframe, that was my first option and it worked fine in desktop but for some reason on the iPad the iframe behaved weirdly (I was using a full window iframe and the content inside the iframe was getting bigger and bigger just after opening the website, without even touching the screen) and that's why I'm trying now this wa...
"Hi there! I'd appreciate if someone would be able to help me because I can't find a solution for this. I have a tour uploaded to a public Google Drive folder (https://googledrive.com/host/0B6e8SLrDrsW_Ti04aXVTa0lkQlU). If I open the html hosted there it works perfectly. However, what I want is to have this html in other server. So what I'm doing is using absolute URLs, putting the url of the GDrive folder in front of every url, href and src appearing inside the html code. Inside the embedpano I...
Zitat von »Tuur« Can you post the code? Maybe you used something double or maybe an extra space is needed somewhere. Tuur Hello Tuur, thank you for trying to help but I just managed to find what the problem was! I'll explain just in case it helps anyone else ;) First time I uploaded the tour to the server it had an error, which I didn't see and that's why I uploaded it. The error was having an extra dash (-) before ending a comment tag (-->). I realized and fixed it, but the file with the error...
Hi there! After playing with a skin xml file for a while, I saved it and no errors were found when checking it. It works perfectly locally using krpano testing server and I uploaded it to my server and works well in Chrome for desktop, Chrome for Android and Safari for iPad*. However, it says Fatal Error, XML Parsing Failed when I try to open it on Chrome for iPad. Saving the file in UTF-8 doesn't fix the problem. Anyone know why this could be happening? Thank you! *All browsers are updated to l...
Zitat von »klaus.krpano« Hi, one possibility might be using some Javascript code to detect the device and then redirect to a html page where only the page itself is embedded. e.g. add code like this in your html page: Quellcode 1 2 3 4 5 var ua = navigator.userAgent.toLowerCase(); if (ua.indexOf("iphone")>=0 || ua.indexOf("ipod")>=0 || (ua.indexOf("android")>=0 && ua.indexOf("mobile")>=0)) { document.location = "pano.html"; } Best regards, Klaus First, thank you for this, it works perfectly. Th...