You are not logged in.

Search results

Search results 1-20 of 311.

Tuesday, March 7th 2023, 6:31pm

Author: Fernando

Gyroscope and new transition issue

Hi, please, testing any vtour (for example https://krpano.com/releases/1.21/viewer/…rtment/tour.xml) with gyroscope actived (no cardboard) using normal navigation (arrow / click as example), let combine gyroscope pan with touch pan. The transition is rare, what is expected to happen does not happen. Edit:This behavior is not something that happens now with 1.21, when using gyro the "lookat" or maybe "linkedscene_lookat" doesn't work the same as without gyro, but with the new transition it seems ...

Saturday, March 4th 2023, 1:30pm

Author: Fernando

help (testing)

Thank you very much everyone for the help!

Friday, March 3rd 2023, 6:22pm

Author: Fernando

help (testing)

Can you tell me if this demo already works ok? https://www.mirapanoramas.nat.cu/bazar Thanks very much!

Friday, March 3rd 2023, 2:46am

Author: Fernando

add <network... code

Hi Klaus, thanks for your help. I already added the code that you suggested to me: Source code 1 2 3 <network maxdownloads="1" maxrequest="1" /> Too I deleted the .htaccess file Best regards,Fdo

Tuesday, February 28th 2023, 2:12am

Author: Fernando

Testing new Scrollarea in simple vtour

Hi, this is a demo for testing new Scrollarea layer in 1.21. See scene 11 for example. https://www.mirapanoramas.nat.cu/bazar/

Friday, February 17th 2023, 2:49pm

Author: Fernando

how to declare function in Javacript file and use it in XML (Hotspot onclick event) ?

Hi, It has always been easier for me to do the function in krpano: Source code 1 2 3 4 5 6 7 8 <action name="mykrpanoaction" type="Javascript"> <![CDATA[ var video = document.getElementById("myvideo"); if (myvideo !== null) { document.getElementById("myvideo").pause(); }]]> </action>

Thursday, February 16th 2023, 3:23am

Author: Fernando

Video inside scrollarea layer?

Hi, Is it technically correct to place a video inside a new scrollarea layer using html5 tag? Source code 1 2 3 4 5 6 7 8 9 10 11 <data name="mydatademo"><![CDATA[ <h2>My Article</h2> <hr style="border:0;border-top:1px solid white;"> <img src="img/01.jpg"><br> <p> Lorem ipsum dolor sit amet, consetetur sadipscing elitr </p> <video id="mivideodemo" src="img/videodemo.mp4" controls> </video><br> ]]></data> krpano 1.21 scrollarea-infobox.xml example: Source code 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ...

Wednesday, February 15th 2023, 2:35am

Author: Fernando

Other link for topic "Image prealign and new transition issue"

Please, see http://www.mirapanoramas.nat.cu/transition2/ with comments in arrows... Source code 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 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 ...

Tuesday, February 14th 2023, 2:05pm

Author: Fernando

Link

www.mirapanoramas.nat.cu/transition See the transition from 6 to 9 scene. Source code 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 <scene name="scene_06" title="06" onstart="" thumburl="panos/06.tiles/thumb.jpg" lat="" lng="" alt="" heading=""> <control bouncinglimits="calc:image.cube ? true : false" /> <view hlookat="0.0" vlookat="0.0" fovtype="MFOV" fov="120" maxpixelzoom="2.0" fovmin="70" fovmax="140" limitview="auto" /> <preview url="panos/06.tiles/prev...

Tuesday, February 14th 2023, 5:18am

Author: Fernando

Image prealign and new transition issue

Hi Klaus, the use of <image prealign=...> seems to affect the normal behavior of the new transition. It is noticeable as a small twist. Any suggestions? Best regards, Fdo

Tuesday, February 7th 2023, 7:36pm

Author: Fernando

Thanks!!!

Thank you very much Klaus for this innovative version. Today is a great day for krpano fans!

Monday, January 30th 2023, 8:33pm

Author: Fernando

It does not work yet with ternary operator...

Hi, Klaus, thanks for your answer. But does not work: (Line 8 of code) Source code 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 // optional: add a close button addlayer('popup_close_x', closex); set(closex, url='%CURRENTXML%/closex.png', parent='popup', align=righttop, edge=center, x=calc(device.mobile ? 0 : 60), scale=0.5, zorder=99, alpha=0.25, onover='tween(alpha,1)', onout='tween(alpha,0.25)', ondown='tween(alpha,1)', onup='tween(alpha,0.25)', onclick='popup_close()' ); I temporalily (only for ...

Monday, January 30th 2023, 3:30pm

Author: Fernando

It dosesn't work yet...

Hi, Index, thanks for your answer. I was trying that code before but it didn't work for me: (line code 43 and 44). If I comment this line and write for example: x=60 then works fine. I also notice that in the klaus example the quotes do not appear either because it's a simplified version of "set". (...) x.normal=60, x.mobile=0, instead x.normal="60", x.mobile="0", (...) Source code 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 4...

Monday, January 30th 2023, 2:23am

Author: Fernando

Correct syntax for "x.mobile=60," inside set action

Hi, please whats is wrong in the code below: Line 39: x.mobile=60 Source code 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 <action name="popup" scope="private:POPUP" args="type, content, width, height, scrollbars"><![CDATA[ if(popup, break(); ); addlayer('popup_bg', popup_bg); set(popup_bg, type=container, align=lefttop, width=100%, height=100%, zorder=99, ...

Thursday, January 5th 2023, 11:57pm

Author: Fernando

scrolltolayer for scrollarea plugin

I new feature for scrollarea plugin. Very usefull to center the map in specific children layer position (similar in hotspot looktohotspot), for example in the same krpano example "demotour-confu" It would be interesting if the panorama icon was centered when opening the map. <events onnewscene="scrolltolayer(xml.scene);" /> Where the icon name is the same to scene name. By the way if any people coded similar feature using "setcenter(x,y)" or "scrolltocenter(x,y)" please share the code. Remember ...

Saturday, December 24th 2022, 4:16pm

Author: Fernando

Merry Christmas and Happy New Year

With hope, waiting for 1.21

Tuesday, December 20th 2022, 2:55pm

Author: Fernando

"Local Development" Fair in Havana

Experimental site done with few resources in a very short time. The photos are coded as vtour to be able to be enlarged. www.gdic.cu/panoramas/feriaPDL2022/

Wednesday, November 2nd 2022, 11:20pm

Author: Fernando

Thanks!

Thanks very much Tuur! Maybe It would be very useful to also include some tool to create hotspots (not just edit) and layers. Best regards, Fernando

Saturday, October 29th 2022, 3:26pm

Author: Fernando

what is new in next release?

Hi Tuur, any info in advanced? Thanks for sharing!

Monday, September 19th 2022, 3:18am

Author: Fernando

Problem with loadingtext

Hi, I can't configure the loadingtext in skin_setting in tour.xml <skin_settings (...) loadingtext="my loading text" (...) /> Nothing happens, no loading text appears Whats is wrong? Thanks.