I am completely new to java script, so I have been copying and pasting code. However, it seems like the images are not loading properly.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="CSS.css">
<link rel="shortcut icon" type="image/ico"
href="../../CONTENT/Images/Logo/ICO.ico" />
<link rel="stylesheet" href="src/styles/threesixty.css">
<title>pappu-lighting</title>
<script src="jquery-3.2.1.js"></script>
</head>
<body>
<div class="threesixty" id="mythreesixty">
<div class="spinner">
<span>0%</span>
</div>
<ol class="threesixty_images"></ol>
</div>
<script type="text/javascript" src="src/threesixty.js"></script>
<script>
window.onload = init;
var product;
function init(){
my360 = $('#mythreesixty').ThreeSixty({
totalFrames: 72,
endFrame: 72,
currentFrame: 1,
imgList: '.threesixty_images',
progress: '.spinner',
imagePath:'assets/product1',
filePrefix: 'ipod-',
ext: '.jpg',
height: 265,
width: 400,
navigation: true,
disableSpin: true
});
}
</script>
</body>
</html>
The images source is located in the directory: /assets/product1/ within the same folder.
Despite all plugins and CSS files being loaded correctly, I can't figure out why the images aren't displaying as expected.