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 |
var viewer = createPanoViewer({swf:"krpano.swf",target:"pano"}); viewer.addVariable("xml", "index.xml"); viewer.passQueryParameters(); viewer.embed(); |
![]() |
Source code |
1 2 3 4 5 6 7 8 9 10 11 |
<script type="text/javascript" src="assets/swfkrpano.js"></script> <script type="text/javascript"> var swf = createswf("krpano.swf", "krpanoSWFObject","100%", "100%", "#000000"); swf.addVariable("xml", "pano/photo_start.xml"); swf.addParam("wmode", "window"); swf.addParam("allowfullscreen", "true"); swf.addParam("allowscriptaccess", "always"); swf.passQueryParameters(); swf.embed("krpano"); </script> |
Location: Netherlands
Occupation: Krpano custom coding / Virtual Tours / Photography / Musician / Recording engineer
This post has been edited 1 times, last edit by "Tuur" (Nov 21st 2011, 12:21pm)
![]() |
Source code |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
<script> var viewer = createPanoViewer({swf:"krpano.swf", id:"krpanoSWFObject", target:"krpanoDIV"}); //viewer.useHTML5("whenpossible"); // uncomment to use the HTML5 krpanoJS viewer always when possible (Safari5) if( viewer.isDevice("iPhone|iPod|Android") ) viewer.addVariable("xml", "krpano_mobile.xml"); else viewer.addVariable("xml", "krpano.xml"); viewer.passQueryParameters(); viewer.embed(); </script> |