多角度展示产品
如果想要完美但是复杂一些的效果可以参考《360度产品展示,js+图片》
JavaScript Code
- <script type="text/javascript">
- $(document).ready(function(){
- // You can specify an array of images outside of the rollerblade method,
- // and then pass it in, as so:
- var arrayOfImages = [
- 'img/m1.jpg',
- 'img/m2.jpg',
- 'img/m3.jpg',
- 'img/m4.jpg',
- 'img/m5.jpg',
- 'img/m6.jpg',
- 'img/m7.jpg'
- ]
- $("#target").rollerblade({imageArray:arrayOfImages});
- // OR you can create the array directly in the options object, as so:
- $("#target").rollerblade({imageArray:[
- 'path/to/image/1.jpg',
- 'path/to/image/2.jpg',
- 'path/to/image/3.jpg',
- 'path/to/image/4.jpg',
- 'and/so/on.jpg'
- ]});
- })
- </script>
原文地址:http://www.freejs.net/article_jquerytupiantexiao_424.html