审查视图

miniprogram_npm/@vant/weapp/circle/canvas.js 1.1 KB
倪静楠 authored
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
'use strict';
Object.defineProperty(exports, '__esModule', { value: true });
exports.adaptor = void 0;
function adaptor(ctx) {
  // @ts-ignore
  return Object.assign(ctx, {
    setStrokeStyle: function (val) {
      ctx.strokeStyle = val;
    },
    setLineWidth: function (val) {
      ctx.lineWidth = val;
    },
    setLineCap: function (val) {
      ctx.lineCap = val;
    },
    setFillStyle: function (val) {
      ctx.fillStyle = val;
    },
    setFontSize: function (val) {
      ctx.font = String(val);
    },
    setGlobalAlpha: function (val) {
      ctx.globalAlpha = val;
    },
    setLineJoin: function (val) {
      ctx.lineJoin = val;
    },
    setTextAlign: function (val) {
      ctx.textAlign = val;
    },
    setMiterLimit: function (val) {
      ctx.miterLimit = val;
    },
    setShadow: function (offsetX, offsetY, blur, color) {
      ctx.shadowOffsetX = offsetX;
      ctx.shadowOffsetY = offsetY;
      ctx.shadowBlur = blur;
      ctx.shadowColor = color;
    },
    setTextBaseline: function (val) {
      ctx.textBaseline = val;
    },
    createCircularGradient: function () {},
    draw: function () {},
  });
}
exports.adaptor = adaptor;