img-check.js
4.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
/**
* Plugin: 图片旋转验证;
* @example
* pc:
* let ImgCheck = require('path/to/img-check')
* let imgCheck = new ImgCheck('#js-img-check', {
* template: require('path/to/hbs'),
* refreshURI: 'path/to/refresh/src'
* })
*
* imgCheck.init()
*
* imgCheck.getResult() // '1230'
*- ----------------------------------------
* @example
* wap:
* let imgCheck = new ImgCheck('#js-img-check', {
* useREM: {
* rootFontSize: 40,
* picWidth: 150
* }
* })
* imgCheck.init()
*
* imgCheck.getResult() // '1112'
*/
/**
* @param selector|jQuery|Element container
* @param object options 配置选项
* pc:
* {
* template,
* refreshURI
* }
*
* wap:
* {
* useREM: {
* rootFontSize, // 设计稿基准字体大小
* picWidth // 设计稿的验证图片宽度
* },
* template,
* refreshURI
* }
*
* @param object data 初始值
* {
* imgSrc: '图片src'
* }
*
*/
const ImgCheck = function(container, options) {
let optionDefault = {
useREM: null,
template: require('hbs/common/img-check.hbs'),
refreshURI: '/passport/captcha/get',
imgProcess: '',
};
$.extend(this, optionDefault, options);
this.$container = $(container);
this.$imgCheck = null;
this.$imgPics = null;
this.picWidth = null;
this.atWorking = false;
return this;
};
ImgCheck.prototype = {
init: function() {
if (this.atWorking) {
return;
}
let self = this;
if (this.useREM) {
this.picWidth = this.useREM.picWidth / this.useREM.rootFontSize;
}
this.refresh();
self.bindEvents();
this.atWorking = true;
},
/**
* method: 绑定事件
*/
bindEvents: function() {
this.$container
.on('click.refresh', '.img-check-refresh', $.proxy(this.refresh, this))
.on('click.rotate', '.img-check-pic', $.proxy(this.rotateImg, this));
},
/**
* method: 渲染 dom
* @param obj data 渲染数据
* {
* imgSrc: 'src' //图片src
* }
*/
render: function(data) {
let self = this;
this.$container.html(this.template(data));
this.$imgPics = this.$container.find('.img-check-pic');
if (!this.useREM && !this.picWidth) {
this.picWidth = this.$imgPics.width();
}
this.$imgPics.each(function(index, elem) {
let $elem = $(elem);
let position = self.calcPosition($elem);
$elem.css('backgroundPosition', position);
});
},
/**
* method: 计算 background-position
* @param num index img-check-pic 的index
* @param num count img-check-pic
*/
calcPosition: function($elem) {
let positionX, positionY;
let index = $elem.index();
let count = parseInt($elem.attr('data-val'), 10);
let unit = this.useREM ? 'rem' : 'px';
count = count % 4;
positionX = -index * this.picWidth + unit;
positionY = -count * this.picWidth + unit;
return [positionX, positionY].join(' ');
},
/**
* Handler method: 刷新验证码
*/
refresh: function() {
const self = this;
const imgSrc = self.imgSrc || '/passport/img-check.jpg';
self.render({imgSrc: `${imgSrc}?t=${Date.now()}`});
},
/**
* Handler method: 旋转图片
*/
rotateImg: function(event) {
let $pic = $(event.target);
let prevRotateCount = parseInt($pic.attr('data-val'), 10);
$pic.attr('data-val', prevRotateCount + 1);
$pic.css({
backgroundPosition: this.calcPosition($pic)
});
},
/**
* method: 获取结果
* @return string '0123'
*/
getResults: function() {
let result = [];
this.$container.find('.img-check-pic')
.each(function() {
let $elem = $(this);
let val = $elem.attr('data-val');
val = parseInt(val, 10);
result.push(val % 4);
});
return result.join(',');
}
};
ImgCheck.prototype.construct = ImgCheck;
module.exports = ImgCheck;