the body background is white, but you have a flash background to. Which for krpano is black.
You can change this too,
by default this is the code in your html:
<script type="text/javascript" src="swfkrpano.js"></script>
|
Source code
|
1
2
3
4
5
6
7
|
<script type="text/javascript">
var swf = createswf("krpano.swf");
swf.passQueryParameters();
swf.embed("krpanoDIV");
</script>
|
createswf supports 5 parameters
1: path to krpano swf
2: id of krpano swf (default is krpanoSWFObject)
3: width default 100%
4: height defailt 100%
5: background-color default #000000 (black)
so all you have to do to change the code to
|
Source code
|
1
2
3
4
5
6
7
|
<script type="text/javascript">
var swf = createswf("krpano.swf","krpanoSWFObject","100%","100%",#FFFFFF);
swf.passQueryParameters();
swf.embed("krpanoDIV");
</script>
|