Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
kaleidoscopejs
Advanced tools
Get the code:
$ npm install kaleidoscopejs
Add the script to your page:
<script src="node_modules/kaleidoscopejs/dist/kaleidoscope.min.js"></script>
var viewer = new Kaleidoscope.Video({source: 'equirectangular-video.mp4', containerId: '#target'});
viewer.render();
var viewer = new Kaleidoscope.Image({source: 'equirectangular-image.jpg', containerId: '#target'});
viewer.render();
let viewer = new Kaleidoscope.Video(options)
options.source
source video to be played.
options.containerId
is where you want to render the 360, this is going to be retrieved via document.querySelector
and when you call render()
the 360 canvas will be append to it.
options.container
HTML element to attach the 360 canvas to. You should always either pass a containerId
or a container
.
options.height
height of the 360 canvas. Defaults to 360
.
options.width
width of the 360 canvas. Defaults to 640
.
options.video
a video tag element to be used as source and rendered in the 360 canvas.
options.autoplay
to autoplay the video once rendered. Doesn't work on mobile. Defaults to true
.
options.muted
to define if the video should start muted. Defaults to false
.
options.initialYaw
number to define initial yaw of 360, should be in degrees(45, 90, 180 etc).
options.loop
to define if the video should loop. Defaults to false
.
options.onError
callback to when something goes wrong.
viewer.render()
renders the canvas in the defined containerId
or container
.
viewer.play()
starts the current video. Useful for mobile.
viewer.pause()
pauses the current video.
viewer.centralize()
move camera back to the original center.
let viewer = new Kaleidoscope.Image(options)
options.source
source of the image to be rendered.
options.containerId
is where you want to render the 360, this is going to be retrieved via document.querySelector
and when you call render()
the 360 canvas will be append to it.
options.container
HTML element to attach the 360 canvas to. You should always either pass a containerId
or a container
.
options.height
height of the 360 canvas. Defaults to 360
.
options.width
width of the 360 canvas. Defaults to 640
.
options.initialYaw
number to define initial yaw of 360, should be in degrees(45, 90, 180 etc).
options.onError
callback to when something goes wrong.
viewer.render()
renders the canvas in the defined containerId
or container
.
viewer.centralize()
move camera back to the original center.
*Most recent versions.
360 videos doesn't work in Safari, IE 11, Microsoft Edge, Android and iOS if the video is served from a different domain, due some CORS implementation bugs.
FAQs
360º video/image viewer
We found that kaleidoscopejs demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.