學會偷懶,并懶出境界是提高工作效率最有效的方法!
Ctrl + D 收藏我吧~
jQuery自動化圖片比例焦點圖slider效果,代碼會根據.mySlideWrap層的寬高自動調整比例,方便定制個性化布局,懶人圖庫推薦下載!
使用方法:
1.引入slider的基礎樣式slideshow.css (*require)
2.引入JS(*require)
<script src="js/jquery.min.js" type="text/javascript"></script>(如果你引入其他版本的jquery,可能出現方法無效的
情況,根據情況調整JS)
<script src="js/slideshow-jq.js" type="text/javascript"></script>
3.引入初始化代碼
(function(jQuery) {
function init() {
wSlideshow.render({
elementID:"mysite",//Dom 渲染的容器
nav:"double_thumbnails",//看你是否需要有導航功能如果參數配置:[none,double_thumbnails]
則會顯示圖片導航條
navLocation:"left", //自定標題的位置參數:[top,bottomm,left,right]
captionLocation:"bottom",//自定標題的位置參數:[top,bottom]
transition:"fade",//自定效果參數:[top,bottom,slide,fade]
autoplay:"1",//自定義auto play 的次數
speed:"5",
aspectRatio:"auto",
showControls:"true",
randomStart:"false",
images:[
{"url":"images/5568730.jpg","width":"333","height":"244","caption":"Foreign staff,
Chinese Imperial Maritime Customs, Tientsin, 1877 or 1878 Photographed by William Francis Stevenson Collected
by Peter Hodge"},
{"url":"images/1676626.jpg","width":"319","height":"250","caption":"The Bund,
Shanghai, 1890s Photographed by William Francis Stevenson Collected by Peter Hodge"},
{"url":"images/6765636.jpg","width":"160","height":"250","caption":"Chinese farmers
collected by guoxue.com"},
{"url":"images/4735676.jpg","width":"207","height":"250","caption":"Chinese coolie
collected by guoxue.com"},
{"url":"images/474001.jpg","width":"332","height":"250","caption":"The Bund, Shanghai,
1890s Photographed by William Francis Stevenson Collected by Peter Hodge"},
{"url":"images/5145203.jpg","width":"157","height":"250","caption":"Chinese empress in
Qing Dynasty collected by guoxue.com"},
{"url":"images/1363237.jpg","width":"333","height":"238","caption":"Nanking Road,
Shanghai, looking towards the Bund, 1890s Photographed by William Francis Stevenson Collected by Peter
Hodge"},
{"url":"images/652076.jpg","width":"166","height":"250","caption":"Chinese emperor in
Qing Dynasty collected by guoxue.com"},
{"url":"images/7168681.jpg","width":"178","height":"250","caption":"Chinese women
raising cocoons collected by guoxue.com"}
]//定義圖片url caption widh height
})
}
jQuery ? jQuery(init) : document.observe('dom:loaded', init)
})(window._W && _W.jQuery)
4.加入HTML:<div class="mySlideWrap"><div id='mysite-slideshow'></div></div>