This repository has been archived by the owner on May 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
336 lines (290 loc) · 8.88 KB
/
index.js
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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
/**
* @file 复制js
* @author fe.xiaowu@gmail.com
* @date 20161031
*
* @event
* copy.success - 复制成功
* copy.error - 复制出错
* copy.mouseover - 滑入
* copy.mouseout - 滑出
* copy.mousedown - 按下鼠标
* copy.mouseup - 松开鼠标
*
* @description
* 1. as对外暴露的接口:
* setText - 设置复制文本
* setLinks - 设置链接
* 2. as里绑定事件, 在用户触发时使用标识来调用js触发事件
* 3. js对as暴露的接口:
* $.fn.copy.cb - 事件回调, 使用标识、事件名来触发
* 4. 逻辑:
* 1. 实例化
* 2. 输出dom和swf到页面, 并绑定事件
* 3. 用户在swf元素上交互时触发事件
* 4. 用户在点击时触发getText事件, js使用as的接口把最新的文本设置给as, as来复制到粘贴板
*/
(function (window, $) {
var expando = 'copy_' + $.now() + '_';
/**
* 复制主体构造函数
*
* @class
* @param {Object} options 配置对象
* @param {Element} element 目标元素
*/
function Copy(options, element) {
var self = this;
self.options = options;
self.$elem = $(element);
self.id = expando + (Copy.id++);
Copy.list[self.id] = self;
self.$elem.data('copy-id', self.id);
self.append();
}
/**
* 输出dom到页面
*/
Copy.prototype.append = function () {
var self = this;
var id = self.id;
var path = self.options.path;
var $elem = self.$elem;
var width = $elem.outerWidth(true);
var height = $elem.outerHeight(true);
var $wrap = $('<div />');
var flashvars = 'id=' + id + '&cb=$.fn.copy.cb';
var html;
// 绑定准备好后就设置右键菜单
self.$elem.one('copy.ready', function () {
self.setLinks();
});
$(window).on('resize.' + id, function () {
self.reset();
});
$wrap.css({
position: 'absolute',
zIndex: 10000,
width: width,
height: height,
left: -9999
});
$wrap.appendTo(document.body);
if (self.options.debug) {
flashvars += '&debug=1';
if (path.indexOf('?') > -1) {
path += '&';
}
else {
path += '?';
}
path += 't=' + $.now();
}
if (navigator.userAgent.match(/MSIE/)) {
// IE gets an OBJECT tag
html = [
'<object id="' + id + '" ',
'classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" ',
'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" ',
'style="width:100%;height:100%;vertical-align:top;">',
'<param name="allowScriptAccess" value="always" />',
'<param name="allowFullScreen" value="false" />',
'<param name="movie" value="' + path + '" />',
'<param name="loop" value="false" />',
'<param name="menu" value="false" />',
'<param name="quality" value="best" />',
'<param name="bgcolor" value="#ffffff" />',
'<param name="flashvars" value="' + flashvars + '"/>',
'<param name="wmode" value="transparent"/>',
'</object>'
].join('');
}
else {
html = [
'<embed id="' + id + '" name=" ' + id + ' " style="width:100%;height:100%;vertical-align:top;" ',
'src=" ' + path + '" ',
'loop="false" ',
'menu="false" ',
'quality="best" ',
'bgcolor="#ffffff" ',
'allowScriptAccess="always" ',
'allowFullScreen="false" ',
'type="application/x-shockwave-flash" ',
'pluginspage="http://www.macromedia.com/go/getflashplayer" ',
'flashvars="' + flashvars + '" ',
'wmode="transparent" />'
].join('');
}
$wrap.get(0).innerHTML = html;
self.flashElement = document.getElementById(self.id);
self.$wrap = $wrap;
self.reset();
};
/**
* 重置元素的位置信息
*
* @return {Object} this
*/
Copy.prototype.reset = function () {
var offset = this.$elem.offset();
this.$wrap.css({
left: offset.left,
top: offset.top
});
return this;
};
/**
* 销毁
*
* @return {Object} this
*/
Copy.prototype.destroy = function () {
var self = this;
var id = self.id;
self.$elem.removeData('copy-id').off('.' + id);
self.$wrap.remove();
$(window).off('.' + id);
delete Copy.list[id];
for (var key in self) {
if (self.hasOwnProperty(key)) {
delete self[key];
}
}
return self;
};
/**
* 设置链接
*
* @param {Array} links 链接数据
* @return {Object} this
*/
Copy.prototype.setLinks = function (links) {
var self = this;
if (links) {
self.options.links = links;
}
else {
links = self.options.links;
}
// 如果有链接数据, 并且当前swf有设置链接的接口则调用as代码来设置
if (links && self.flashElement && self.flashElement.setLinks) {
self.flashElement.setLinks(links);
}
return self;
};
/**
* 设置文本到当前实例, 主要用来多次初始
*
* @param {string} text 文本
* @return {Object} this
*/
Copy.prototype.setText = function (text) {
// 必须有值时才设置
if (text) {
this.options.text = text;
}
return this;
};
/**
* 获取当前最新的文本
*
* @return {Object} this
*/
Copy.prototype.getText = function () {
var text = this.options.text;
if ($.isFunction(text)) {
text = text.call(this.$elem.get(0));
}
return text;
};
/**
* 缓存列表, 主要把实例以id为key的形式存下来, 方便和swf交互
*
* @type {Object}
*/
Copy.list = {};
/**
* 唯一标识
*
* @type {number}
*/
Copy.id = 1;
/**
* 使用标识获取实例对象
*
* @param {string} id 标识
*
* @return {Object} 实例
*/
Copy.get = function (id) {
return Copy.list[id];
};
/**
* 方法入口
*
* @param {Object} options 配置对应
*
* @return {Object} jQuery对象
*/
$.fn.copy = function (options) {
// 如果不是对象, 则认为是字符串
if (!$.isPlainObject(options)) {
options = {
text: options
};
}
options = $.extend({}, $.fn.copy.defaults, options);
// 返回jQuery使其链式
return this.each(function (index, val) {
var id = $(this).data('copy-id');
// 如果有缓存表示初始过
if (id) {
// 如果要销毁
if (options.text === 'destroy') {
return Copy.get(id).destroy();
}
// 否则重新设置文本和链接
return Copy.get(id).setText(options.text).setLinks(options.links).reset();
}
if (options.text !== 'destroy') {
new Copy(options, this);
}
});
};
/**
* swf文件的触发回调
*
* @param {string} id 标识
* @param {string} event 事件名
* @param {Object} data 数据对象
*/
$.fn.copy.cb = function (id, event, data) {
var api = Copy.get(id);
if (api) {
if (event === 'mousedown' && api.flashElement && api.flashElement.setText) {
api.flashElement.setText(api.getText());
}
api.$elem.triggerHandler('copy.' + event, data);
}
api = null;
};
/**
* 默认参数
*
* @type {Object}
* @param {boolean} [defaults.debug=false] 调试模式
* @param {string} defaults.path swf所在路径
* @param {string|Function} defaults.text 复制文本
* @param {Array} defaults.links 右键链接菜单
* @param {string} defaults.links[].name 菜单名称
* @param {string} defaults.links[].url 菜单链接
* @param {boolean} defaults.links[].disabled 是否禁用
* @param {boolean} defaults.links[].line 是否需要上边框
*/
$.fn.copy.defaults = {
debug: false,
path: '',
text: '',
links: []
};
})(window, jQuery);