You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to use 360 view for my product and i am trying to use your product but it is not working i can only see a images of car on whole page.
from css and js point of view what are the minimum things i required to run this
following is code i am trying
car = $('.car').ThreeSixty({
totalFrames: 52, // Total no. of image you have for 360 slider
endFrame: 52, // end frame for the auto spin animation
currentFrame: 1, // This the start frame for auto spin
imgList: '.threesixty_images', // selector for image list
progress: '.spinner', // selector to show the loading progress
imagePath:'assets/car/', // path of the image assets
filePrefix: '', // file prefix if any
ext: '.png', // extention for the assets
height: 1000,
width: 447,
navigation: false
});
$('.custom_previous').bind('click', function(e) {
car.previous();
});
$('.custom_next').bind('click', function(e) {
car.next();
});
$('.custom_play').bind('click', function(e) {
car.play();
});
$('.custom_stop').bind('click', function(e) {
car.stop();
});
}
</script>
`
The text was updated successfully, but these errors were encountered:
I want to use 360 view for my product and i am trying to use your product but it is not working i can only see a images of car on whole page.
from css and js point of view what are the minimum things i required to run this
following is code i am trying
`
<script type="text/javascript" src="js/jquery-1.8.3.min.js"></script> <script src='../src/threesixty.js'></script><!doctype html>
Play
<script type="text/javascript">Previous
Pause
Next
window.onload = init;
var car;
function init(){
}
</script>
`
The text was updated successfully, but these errors were encountered: