Microseer.previewImage(object)
预览图片,只能查看网络图片
object 参数说明
参数名 | 类型 | 必填 | 说明 |
---|---|---|---|
current | string | 否 | 当前显示图片的链接,不填则默认为 urls 的第一张 |
urls | string array | 是 | 需要预览的图片链接列表 |
success | function | 否 | 接口调用成功的回调函数 |
fail | function | 否 | 接口调用失败的回调函数 |
complete | function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
eg:
var object = {
current: "http://tupian.enterdesk.com/2013/mxy/12/03/2/1.jpg",
urls: [
"http://tupian.enterdesk.com/2013/mxy/12/03/2/1.jpg",
"http://pic72.nipic.com/file/20150716/21422793_144600530000_2.jpg",
"http://tupian.enterdesk.com/2013/mxy/12/10/15/3.jpg",
"http://pic47.nipic.com/20140902/12918166_193551217000_2.jpg",
"http://img.bizhi.sogou.com/images/2013/11/07/401031.jpg"
]
}
Microseer.previewImage(object);