/* * Simple Gallery (jQuery 2.1.1) * 用法: * $('#el').bsGallery({ images: ['a.jpg','b.jpg', ...] }); * 可选项: * initialIndex, loop, thumbWidth, thumbHeight, mainHeight, counter */ (function($){ 'use strict'; var defaults = { images: [], // 必填:图片数组(字符串或 {src, thumb}) initialIndex: 0, loop: true, thumbHeight: 100, mainHeight: 420, // 新增:主图宽度与缩略栏宽度(可用数字或带单位字符串,如 '600px'、'60%'} mainWidth: 560, thumbsWidth: 180, counter: true }; function buildDom($root, settings){ $root.addClass('bs-gallery'); var $main = $('