efront 3.35.11 → 3.35.12

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.
@@ -214,7 +214,7 @@ function hsl2rgb([h, s, l]) {
214
214
  var r = h + 1 / 3;
215
215
  var g = h;
216
216
  var b = h - 1 / 3;
217
- return [r, g, b].map(t => t2rgb(t, p, q));
217
+ return [r, g, b].map(t => t2rgb(t, p, q) * 255);
218
218
  }
219
219
  function percent(a) {
220
220
  if (/%$/.test(a)) {
@@ -273,7 +273,7 @@ function slider(autoplay, circle = true) {
273
273
  if (outter.index === index && cache !== false) return;
274
274
  negative_index = -index;
275
275
  var _removingMain = _imageMain;
276
- reshape(index, false, cache);
276
+ reshape(index, false);
277
277
  css(_removingMain, "transition:.1s opacity ease-out,.1s transform;z-index:1;left:0;");
278
278
  appendChild(outter, _removingMain);
279
279
  setTimeout(function () {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "efront",
3
- "version": "3.35.11",
3
+ "version": "3.35.12",
4
4
  "description": "简化前端开发,优化web性能",
5
5
  "main": "public/efront.js",
6
6
  "directories": {