Suchergebnisse
Suchergebnisse 1-12 von insgesamt 12.
Hi Klaus, https://krpano.com/docu/xml/?version=121#layer.bgbordermode I am testing the bgbordermode attribute. I set the value of bgbordermode to "inside", but it doesn't work properly. It still shows the same result as set to "outside".
Hi Klaus, The code to test is written as below: Quellcode 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 <krpano version="1.20.11" title="Virtual Tour" logkey="true" debugmode="true" > <events name="test_events" keep="true" onmousewheel="test_onmousewheel()" /> <layer name="test_layer1" keep="true" type="image" url="0_6_0.jpg" children="false" onclick="trace('click test_layer1')" > <layer name="test_layer2" type="image" url="0_6_0.png" onclick="trace('c...
Hi Klaus, The code to test is written as below. Quellcode 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 <krpano version="1.20.11" title="Virtual Tour" logkey="true" debugmode="true" > <include url="skin/vtourskin.xml" /> <...
Hi Klaus, I'm working on a project that uses wheeldelta values. The project works on the three devices listed below. Desktop with mouseDesktop with touch deviceMobileThere was no problem until version 1.20.11 of krpano. 1. When using a touch device, if the version of krpano is 1.21, the sign of the wheeldelta value is reversed. 2. When the version of krpano is 1.21, the desktop cannot detect the touch device. The code to test is written as below. Quellcode 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 ...
I am using everpano 1.5.2. I created project type as 3d. I am testing the output by running render Project. When going back to the dolhouse from panorama view, hot spots on the floor do not recover. If the project type is photo, it works normally.
The everpano brand menu is always displayed in the context menu that appears when you right-click on everpano content. How to remove everpano brand menu in context menu? Is there an additional everpano branding free license?
<plugin name="everpano_ui" keep="true" devices="html5" url="%VIEWER%/plugins/everpano_ui.js" vrPosition = "left" dollhousePosition = "left" panoModePosition = "left" fullscreenPosition = "right" menuOpen = "0" menuAnimation = "0" showPanoTitle = "false" showNextPrevious = "1" showNPTooltips = "1" showMeasure = "1" /> I want to customize the ui by using the everpano_ui plugin in main.xml. The example code has very limited functionality. I want to change the design and position of ui buttons. I wa...
Hi, I am using the txtjoin function. The description of the txtjoin function is as follows: It is explained that you can use value for the parameters "var1, var2, ...". I coded it like this: Quellcode 1 txtjoin(layer[button_test2].html, '|', '0', '0', '0', '0'); or Quellcode 1 txtjoin(layer[button_test2].html, '|', 0, 0, 0, 0); Here is the result: In the result, value is not applied and only the separator is displayed. The functionality of the txtjoin function should be updated or the documentat...
Quellcode 1 2 3 4 5 6 7 8 9 10 11 12 13 <krpano version="1.20.9" logkey="true" debugmode="true"> <!-- use a grid preview pano as background --> <preview type="grid(cube,16,16,512,0xCCCCCC,0xF6F6F6,0x999999);" /> <!-- view settings --> <view hlookat="0" vlookat="0" fovtype="VFOV" fov="100" fovmin="60" fovmax="150" /> <layer name="test" type="image" keep="true" url="0.jpg" align="center" edge="center" onclick="set(bgborder, '5')" /> </krpano> Before click on the test layer, After click on the tes...
Hi, I am creating layers using the addlayer() function. The output results depend on the quality of the internet speed. For testing, "krpano Testing Server" is used. 1. In normal case, The resulting video, https://youtu.be/IRdr8S-nc8s 2. If your internet speed is slow, The resulting video, https://youtu.be/3iJX97fT87A The layer is created using the for statement. I am checking if all images of the layer are loaded by the onloaded event. When the loaded layer is visible, some images that could no...
I fixed it by changing the button layer code as below. Quellcode 1 2 3 4 <layer name="load_a_type" style="button" align="bottom" x="-300" y="60" width="100" keep="true" html="A-TYPE" onclick="loadpanoscene(a_type.xml, scene_on_1stroom);skin_startup();" />
Hi, I created a_type.xml, b_type.xml, c_type.xml, d_type.xml. This is a pano xml that contains scenes. Load using the loadpanoscene() function through 4 buttons. The code of the button layer is shown below. Quellcode 1 2 3 4 <layer name="load_a_type" style="button" align="bottom" x="-300" y="60" width="100" keep="true" html="A-TYPE" onclick="loadpanoscene(a_type.xml, scene_on_1stroom);" /> If you load another pano through the button, the thumbnails will not update to the new pano. Thank you.