Search found 35 matches

by Curtisio
Thu Mar 23, 2023 9:08 pm
Forum: Pano2VR general
Topic: How is speed calculated?
Replies: 0
Views: 28346

How is speed calculated?

I'm using the JavaScript API to slowly move the pano left then right and slightly change the fov when the user isn't using the pano. To explain, we have a presentation over the top to give the user further information. In trying to calculate transition timings I was wondering how rotation speed is c...
by Curtisio
Tue Dec 20, 2022 2:27 pm
Forum: Pano2VR general
Topic: html ID for hotspots
Replies: 4
Views: 7926

Re: html ID for hotspots

I'm using pano.getPointHotspotIds() then Jquery.reverse(). Then I loop through the array to assign html IDs. Working well at the moment :D
by Curtisio
Tue Dec 20, 2022 8:44 am
Forum: Pano2VR general
Topic: html ID for hotspots
Replies: 4
Views: 7926

Re: html ID for hotspots

Thanks Christoph but I need the actual element in the html to be assigned an ID so I can dynamically load text into the hotspot's text box. I maybe able to use your method to loop through the hotspots and assign IDs dynamically using JS.
by Curtisio
Mon Dec 19, 2022 4:59 pm
Forum: Pano2VR general
Topic: html ID for hotspots
Replies: 4
Views: 7926

html ID for hotspots

Hi,

Is there a way to assign a html ID to a hotspot? I'm trying to implement a bit of JS in my code to make a hotspot appear after an settimeout by hotspots don't appear to be given an ID in the html.

Any help appreciated.
by Curtisio
Fri Feb 04, 2022 10:06 am
Forum: Pano2VR general
Topic: webm & Safari
Replies: 2
Views: 5323

Re: webm & Safari

Thanks Hopki
by Curtisio
Thu Feb 03, 2022 4:19 pm
Forum: Pano2VR general
Topic: Pano2VR 7 beta
Replies: 104
Views: 10883655

Re: Pano2VR 7 beta

I think I've found a pano v7 bug.

When I create a pano in v7 I can't pan around the scene when click/holding a mouse over a pinned video. In v6 I can.
by Curtisio
Thu Feb 03, 2022 10:24 am
Forum: Pano2VR general
Topic: Pinned video > Fly in
Replies: 3
Views: 7415

Re: Pinned video > Fly in

I've just upgraded to pano 7. It seemed to be a loading issue. I've added a poster image. It's working fine now.
by Curtisio
Thu Feb 03, 2022 9:57 am
Forum: Pano2VR general
Topic: webm & Safari
Replies: 2
Views: 5323

webm & Safari

Hi, webm is now supported in MacOS Safari but pinned webm files in Pano2vr 6 or 7 do not show in Safari. I know iOS Safari still doesn't support webm but they should work in MacOS. I have four character green screen videos in my pano which are being moved around at the moment so creating embedded vi...
by Curtisio
Wed Feb 02, 2022 1:37 pm
Forum: Pano2VR general
Topic: Pinned video > Fly in
Replies: 3
Views: 7415

Re: Pinned video > Fly in

I've put the rotation the other way around and made it a bit longer and the issue seems to have been resolved
by Curtisio
Tue Feb 01, 2022 2:54 pm
Forum: Pano2VR general
Topic: Pinned video > Fly in
Replies: 3
Views: 7415

Pinned video > Fly in

Hi, I have a pinned video of a person talking. When the first pano loads I have a fly in to spin around the scene. The pinned video (with preview file) only pops into the scene when the fly in animation has completed. Is there a way to show the preview file throughout the initial fly in animation? T...
by Curtisio
Mon Jul 12, 2021 10:17 pm
Forum: Pano2VR general
Topic: Version Controlling Pano Updates
Replies: 2
Views: 5615

Re: Version Controlling Pano Updates

Thanks Hopki I think your last point is the way to go as I only output the html file the first time I output. This is because I usually at a lot of html, css styling, other JavaScript, or turn the html into php. I version control all CSS, js, including Pano js each time I upload an update anyway. I ...
by Curtisio
Mon Jul 12, 2021 12:18 pm
Forum: Pano2VR general
Topic: Version Controlling Pano Updates
Replies: 2
Views: 5615

Version Controlling Pano Updates

Hi all, What's the preferred method to version control pano tours? E.g. if I update one node the images are cached in the user's browser? Is there a way to version control an updated node so the user get the update without drawing the images from cache? I hope that makes sense? Essentially, what's t...
by Curtisio
Fri Jul 09, 2021 10:16 am
Forum: Pano2VR general
Topic: Making Hotspots Focusible
Replies: 5
Views: 9684

Re: Making Hotspots Focusible

YES !!! Once the panorama is loaded a little JS to loop through the hotspots to add aria role=button and tabindex works OK. They still don't all tab in the order in the DOM but it's definitely better for accessibility.
by Curtisio
Fri Jul 09, 2021 9:30 am
Forum: Pano2VR general
Topic: Making Hotspots Focusible
Replies: 5
Views: 9684

Re: Making Hotspots Focusible

Hopki

There's a typo in the JavaScript reference

Code: Select all

javascript:"";
player.("imagesready", function() {
alert("Panorama loaded!");
});
should be

Code: Select all

javascript:"";
player.on("imagesready", function() {
alert("Panorama loaded!");
});
by Curtisio
Thu Jul 08, 2021 9:54 pm
Forum: Pano2VR general
Topic: Making Hotspots Focusible
Replies: 5
Views: 9684

Re: Making Hotspots Focusible

Maybe looping through the hotspots and adding ARIA role=“button” might work?

I'll try tomorrow.