emacroh5lib 1.0.49 → 1.0.50

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "emacroh5lib",
3
- "version": "1.0.49",
3
+ "version": "1.0.50",
4
4
  "description": "EMacro前端组件库",
5
5
  "main": "dist/emacroh5lib.min.js",
6
6
  "scripts": {
@@ -229,52 +229,52 @@
229
229
  resetZoom(adaptive = true) {
230
230
  const image = this.image;
231
231
 
232
- let { width, height } = image;
233
- if (adaptive) {
234
- let rate = 1
235
- if (width > height) {
236
- rate = width / document.body.clientWidth
237
- } else {
238
- rate = height / document.body.clientHeight
239
- }
240
- width = width / rate
241
- height = height / rate
242
- }
232
+ // let { width, height } = image;
233
+ // if (adaptive) {
234
+ // let rate = 1
235
+ // if (width > height) {
236
+ // rate = width / document.body.clientWidth
237
+ // } else {
238
+ // rate = height / document.body.clientHeight
239
+ // }
240
+ // width = width / rate
241
+ // height = height / rate
242
+ // }
243
243
 
244
- this.setStyleByName(image, "width", `${width}px`);
245
- this.setStyleByName(image, "height", `${height}px`);
244
+ // this.setStyleByName(image, "width", `${width}px`);
245
+ // this.setStyleByName(image, "height", `${height}px`);
246
246
 
247
- if (this.listDataCache[this.index] != null) {
248
- this.listDataCache[this.index].width = `${width}px`;
249
- this.listDataCache[this.index].height = `${height}px`;
250
- }
247
+ // if (this.listDataCache[this.index] != null) {
248
+ // this.listDataCache[this.index].width = `${width}px`;
249
+ // this.listDataCache[this.index].height = `${height}px`;
250
+ // }
251
251
 
252
252
 
253
253
 
254
254
  // --------------------------------------------------------------------------------------------------
255
- // const imageObject = new Image();
256
- // imageObject.src = this.list[this.index];
257
- // const $this = this
258
- // imageObject.onload = () => {
259
-
260
- // let { width, height } = imageObject;
261
- // if (adaptive) {
262
- // let rate = 1
263
- // if (width > height) {
264
- // rate = width / document.body.clientWidth
265
- // } else {
266
- // rate = height / document.body.clientHeight
267
- // }
268
- // width = width / rate
269
- // height = height / rate
270
- // }
255
+ const imageObject = new Image();
256
+ imageObject.src = this.list[this.index];
257
+ const $this = this
258
+ imageObject.onload = () => {
259
+
260
+ let { width, height } = imageObject;
261
+ if (adaptive) {
262
+ let rate = 1
263
+ if (width > height) {
264
+ rate = width / document.body.clientWidth
265
+ } else {
266
+ rate = height / document.body.clientHeight
267
+ }
268
+ width = width / rate
269
+ height = height / rate
270
+ }
271
271
 
272
- // $this.setStyleByName(image, "width", `${width}px`);
273
- // $this.setStyleByName(image, "height", `${height}px`);
272
+ $this.setStyleByName(image, "width", `${width}px`);
273
+ $this.setStyleByName(image, "height", `${height}px`);
274
274
 
275
- // $this.listDataCache[this.index].width = `${width}px`;
276
- // $this.listDataCache[this.index].height = `${height}px`;
277
- // }
275
+ $this.listDataCache[this.index].width = `${width}px`;
276
+ $this.listDataCache[this.index].height = `${height}px`;
277
+ }
278
278
 
279
279
 
280
280
  },