axis360
axis360 copied to clipboard
Tutorials/Examples
+1 I would be really interesting in any examples for playing stereoscopic images
Hi, Do you any example? I'm trying something very basic and I'm always seeing either a black screen or just one time I got rendered a frame as an image but never a video. I have tried a lot of stuff with no success.
My code is:
$(document).ready(function () { var domElement = document.querySelector('.normal.video');
var frame = new Axis(domElement, { preload: true, crossorigin: "anonymous" });
frame
.src('http://360.littlstar.com/production/a0a5746e-87ac-4f20-9724-ecba40429e54/web.mp4')
.height(500)
.width(500)
.render()
.once('ready', function () {
frame
.play();
});
});
Where the DOM element is a DIV. I have also tried a video tag.
UPDATE: For that URL video I pasted, I got rendered a panomaric 360 image, but never the whole video.
@rolodt which browser are you using?
+1