图片预览插件:
参数配置可参考作者文章;
调用方法:
// 图片预览
var viewer = new Viewer(document.getElementById('viewer'), {
// url: 'data-original',
button: true,
inline: false,
zoomable: true,
fullscreen: false,
transition: true,
minZoomRatio: 0.1,
maxZoomRatio: 10,
// backdrop: true,
movable: true,
interval: 2000,
navbar: true,
loading: true,
show: function() {
viewer.update();
}
});
1