图片查看器(图片放大缩小功能)

第一: Viewer.js

链接:http://www.dowebok.com/192.html

使用方法

1、引入文件

JS 版本:


jQuery 版本:



注意:JS 版本和 jQuery 版本名字虽然一样,但代码不一样,不能通用,请到 github 上下载需要的版本。

2、HTML

        
  • 图片1

3、JavaScript

JS 版本:

var viewer = new Viewer(document.getElementById('dowebok'));

jQuery 版本:

$('#dowebok').viewer();

配置

名称 类型 默认值 说明
inline 布尔值 false 启用 inline 模式
button 布尔值 true 显示右上角关闭按钮(jQuery 版本无效)
navbar 布尔值/整型 true 显示缩略图导航
title 布尔值/整型 true 显示当前图片的标题(现实 alt 属性及图片尺寸)
toolbar 布尔值/整型 true 显示工具栏
tooltip 布尔值 true 显示缩放百分比
movable 布尔值 true 图片是否可移动
zoomable 布尔值 true 图片是否可缩放
rotatable 布尔值 true 图片是否可旋转
scalable 布尔值 true 图片是否可翻转
transition 布尔值 true 使用 CSS3 过度
fullscreen 布尔值 true 播放时是否全屏
keyboard 布尔值 true 是否支持键盘
interval 整型 5000 播放间隔,单位为毫秒
zoomRatio 浮点型 0.1 鼠标滚动时的缩放比例
minZoomRatio 浮点型 0.01 最小缩放比例
maxZoomRatio 数字 100 最大缩放比例
zIndex 数字 2015 设置图片查看器 modal 模式时的 z-index
zIndexInline 数字 0 设置图片查看器 inline 模式时的 z-index
url 字符串/函数 src 设置大图片的 url
build 函数 null 回调函数,具体查看演示
built 函数 null 回调函数,具体查看演示
show 函数 null 回调函数,具体查看演示
shown 函数 null 回调函数,具体查看演示
hide 函数 null 回调函数,具体查看演示
hidden 函数 null 回调函数,具体查看演示
view 函数 null 回调函数,具体查看演示
viewed 函数 null 回调函数,具体查看演示

第二:zoomify.js
链接:http://www.dowebok.com/214.html

使用方法

1、引入文件



2、HTML

3、JavaScript

$('.zoomify').zoomify();

配置

1、属性

名称 类型 默认值 说明
duration 整数 200 动画持续时间
easing 字符串 linear 动画持续时间
scale 整数/浮点数 0.9 图片最大缩放比例

2、方法

名称 说明 举例
zoom 放大或缩小 $(‘.zoomify’).zoomify(‘zoom’);
zoomIn 放大 $(‘.zoomify’).zoomify(‘zoomIn’);
zoomOut 缩小 $(‘#myImage’).zoomify(‘zoomOut’);
reposition 重新调整 $(‘#myImage’).zoomify(‘reposition’);

3、事件

名称 说明
zoom-in.zoomify 放大前的事件
zoom-in-complete.zoomify 放大后的事件
zoom-out.zoomify 缩小前的事件
zoom-out-complete.zoomify 缩小后的事件

你可能感兴趣的:(插件)