Jquery Book Code Not Working After Following Tutorial

Viewed 31

I recently followed a turotial on how to make a book through JavaScript an jQuery. I followed every step on the video I watched, and nothing works for me. I'm almost ready to give up, but before I do, could someone help me point out what I did wrong? Thanks.

<!DOCTYPE html>

<html lang="en">

<head>
<meta charset="UTF-8">
<link href="flipgraphics.css" rel="stylesheet"/>

<title>Flipbook</title>

</head>


<body>

<h1>My First Book</h1>
 <div id="album">

     <div style="background: url('FlipPics/StarFoxCosplay.jpg');"></div>
     <div style="background: url('FlipPics/(Holiday Festival Advertisement) White Snow Edition.jpg');"></div>
     <div style="background: url('FlipPics/StarFoxCosplay.jpg');"></div>
        
 </div>
 

<script src="https://code.jquery.com/jquery-3.6.1.min.js"
  integrity="sha256-o88AwQnZB+VDvE9tvIXrMQaPlFFSUTR+nldQm1LuPXQ="
  crossorigin="anonymous"></script>
  
  <script src="turn.min.js"></script>
  
  <script>
   $('#album').turn({gradients: true, acceleration: true});
</script>
</body>


</html>
0 Answers
Related