360 degree product view using Jquery and css

To view the 360 degree image view using jquery. This is the concept to view the 360 degree image  on mouse cursor movement. This types of view is mostly used in the e-commerce website products to show the best image for customers. This is something old concept to use the different angled image to view 360 degree view. But it is useful some cases. I hope this is useful. Below is the demo page please check out the demo page so you will know how its working. And also have the download code option below. You can download the code as well.


Code for 360 degree Product View:

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>jQuery 360 product view</title>
<script type="text/javascript" language="JavaScript" src="js/jquery-1.4.4.js"></script>
<script type="text/javascript" language="JavaScript" src="js/pic360-1.0.0.js"></script>
<style>
.PIC360{display:none;overflow:hidden;}
.PIC360 UL,.PIC360 LI{margin:0; padding:0;}
.PIC360 LI{list-style:none;}
.PIC360{width:400px; margin:10px auto;border:5px solid #CECECE;}
</style>
</head>
<body>
<div class="PIC360">
<ul>
<li><img width="400" height="255" src="images/image1_1.jpg" /></li>
<li><img width="400" height="255" src="images/image1_2.jpg" /></li>
<li><img width="400" height="255" src="images/image1_3.jpg" /></li>
<li><img width="400" height="255" src="images/image1_4.jpg" /></li>
<li><img width="400" height="255" src="images/image1_5.jpg" /></li>
<li><img width="400" height="255" src="images/image1_6.jpg" /></li>
<li><img width="400" height="255" src="images/image1_7.jpg" /></li>
<li><img width="400" height="255" src="images/image1_8.jpg" /></li>
<li><img width="400" height="255" src="images/image1_9.jpg" /></li>
<li><img width="400" height="255" src="images/image1_10.jpg" /></li>
<li><img width="400" height="255" src="images/image1_11.jpg" /></li>
<li><img width="400" height="255" src="images/image1_12.jpg" /></li>
<li><img width="400" height="255" src="images/image1_13.jpg" /></li>
<li><img width="400" height="255" src="images/image1_14.jpg" /></li>
<li><img width="400" height="255" src="images/image1_15.jpg" /></li>
<li><img width="400" height="255" src="images/image1_16.jpg" /></li>
<li><img width="400" height="255" src="images/image1_17.jpg" /></li>
<li><img width="400" height="255" src="images/image1_18.jpg" /></li>
</ul>
</div>
</body>
</html>

Post a Comment

0 Comments