element-draw.uvue 9.5 KB
Newer Older
张磊 已提交
1
<template>
张磊 已提交
2
  <!-- #ifdef APP -->
H
hdx 已提交
3
  <scroll-view class="page-scroll-view">
张磊 已提交
4 5
  <!-- #endif -->
    <view>
H
hdx 已提交
6 7 8 9 10 11 12 13
      <view class="drawing" id="draw-text-view"></view>
      <view class="drawing" id="draw-line-view"></view>
      <view class="drawing" id="draw-circle-view"></view>
      <view class="drawing" id="draw-dash-line"></view>
      <view class="drawing" id="draw-house"></view>
      <view class="drawing" id="draw-style"></view>
      <view class="drawing" id="draw-odd"></view>
      <view class="drawing" id="draw-arcto"></view>
张磊 已提交
14 15 16 17
    </view>
  <!-- #ifdef APP -->
  </scroll-view>
  <!-- #endif -->
张磊 已提交
18 19
</template>

H
hdx 已提交
20
<script>
张磊 已提交
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
  var y = 160
  export default {
    data() {
      return {
        texts: [
          'HBuilderX,轻巧、极速,极客编辑器',
          'uni-app x,终极跨平台方案',
          'uniCloud,js serverless云服务',
          'uts,大一统语言',
          'uniMPSdk,让你的App具备小程序能力',
          'uni-admin,开源、现成的全端管理后台',
          'uni-id,开源、全端的账户中心',
          'uni-pay,开源、云端一体、全平台的支付',
          'uni-ai,聚合ai能力',
          'uni-cms,开源、云端一体、全平台的内容管理平台',
          'uni-im,开源、云端一体、全平台的im即时消息',
          'uni统计,开源、完善、全平台的统计报表',
          '......'
        ] as string[]
      }
    },
    onShow() {
    },
张磊 已提交
44

张磊 已提交
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
    onReady() {
      this.drawText()
      this.drawLines()
      this.drawCircles()
      this.drawStar()
      this.drawhouse()
      this.drawPoint()
      this.drawRect()
      this.drawArcTo()
    },
    onUnload() {
      y = 160
    },
    methods: {
      drawText() {
60
        let element = uni.getElementById('draw-text-view')!
61
        let ctx = element.getDrawableContext()!
62
        let width = element.getBoundingClientRect().width
63
        ctx.reset()
DCloud_iOS_XHY's avatar
DCloud_iOS_XHY 已提交
64
        ctx.font = "15px Arial"
65
        ctx.textAlign = "center"
张磊 已提交
66 67 68
        for (var i = 0; i < this.texts.length; i++) {
          let value = this.texts[i]
          if (i % 2 == 0) {
69
            ctx.fillText(value, width / 2, (20 * (i + 1)))
张磊 已提交
70
          } else {
71
            ctx.lineWidth = 0.5
72
            ctx.strokeText(value, width / 2, (20 * (i + 1)))
张磊 已提交
73 74
          }
        }
75
        ctx.update()
张磊 已提交
76 77
      },
      drawLines() {
78 79 80
        let ctx = uni.getElementById('draw-line-view')!.getDrawableContext()!
        ctx.reset()
        ctx.lineWidth = 10;
张磊 已提交
81

张磊 已提交
82
        ["round", "bevel", "miter"].forEach((join, i) => {
83 84 85 86 87 88 89 90
          ctx.lineJoin = join;
          ctx.beginPath();
          ctx.moveTo(5, 10 + i * 40);
          ctx.lineTo(50, 50 + i * 40);
          ctx.lineTo(90, 10 + i * 40);
          ctx.lineTo(130, 50 + i * 40);
          ctx.lineTo(170, 10 + i * 40);
          ctx.stroke();
张磊 已提交
91
        });
92
        ctx.lineWidth = 1
张磊 已提交
93
        var space = 170
94 95 96 97 98 99 100
        ctx.strokeStyle = '#09f';
        ctx.beginPath();
        ctx.moveTo(10 + space, 10);
        ctx.lineTo(140 + space, 10);
        ctx.moveTo(10 + space, 140);
        ctx.lineTo(140 + space, 140);
        ctx.stroke();
张磊 已提交
101
        // Draw lines
102
        ctx.strokeStyle = 'black';
张磊 已提交
103
        ['butt', 'round', 'square'].forEach((lineCap, i) => {
104 105 106 107 108 109
          ctx.lineWidth = 15;
          ctx.lineCap = lineCap;
          ctx.beginPath();
          ctx.moveTo(25 + space + i * 50, 10);
          ctx.lineTo(25 + space + i * 50, 140);
          ctx.stroke();
张磊 已提交
110
        });
111 112 113 114 115 116 117 118 119 120 121 122
        ctx.lineWidth = 1;
        this.drawDashedLine([], ctx);
        this.drawDashedLine([2, 2], ctx);
        this.drawDashedLine([10, 10], ctx);
        this.drawDashedLine([20, 5], ctx);
        this.drawDashedLine([15, 3, 3, 3], ctx);
        this.drawDashedLine([20, 3, 3, 3, 3, 3, 3, 3], ctx);
        ctx.lineDashOffset = 18;
        this.drawDashedLine([12, 3, 3], ctx);
        ctx.lineDashOffset = 0
        ctx.setLineDash([0])
        ctx.update()
张磊 已提交
123 124 125 126 127 128 129 130 131 132
      },
      drawDashedLine(pattern : Array<number>, ctx : DrawableContext) {
        ctx.beginPath();
        ctx.setLineDash(pattern);
        ctx.moveTo(0, y);
        ctx.lineTo(300, y);
        ctx.stroke();
        y += 15;
      },
      drawCircles() {
133 134
        let ctx = uni.getElementById('draw-circle-view')!.getDrawableContext()!
        ctx.reset()
张磊 已提交
135 136 137
        // Draw shapes
        for (var i = 0; i < 4; i++) {
          for (var j = 0; j < 3; j++) {
138
            ctx.beginPath();
张磊 已提交
139 140 141 142 143 144
            var x = 25 + j * 50;               // x coordinate
            var y = 25 + i * 50;               // y coordinate
            var radius = 20;                    // Arc radius
            var startAngle = 0;                     // Starting point on circle
            var endAngle = Math.PI + (Math.PI * j) / 2; // End point on circle
            var clockwise = i % 2 == 0 ? false : true; // clockwise or anticlockwise
张磊 已提交
145

146
            ctx.arc(x, y, radius, startAngle, endAngle, clockwise);
张磊 已提交
147

张磊 已提交
148
            if (i > 1) {
149
              ctx.fill();
张磊 已提交
150
            } else {
151
              ctx.stroke();
张磊 已提交
152 153 154
            }
          }
        }
155
        ctx.update()
张磊 已提交
156
      },
张磊 已提交
157

张磊 已提交
158
      drawStar() {
159 160 161
        let ctx = uni.getElementById('draw-dash-line')!.getDrawableContext()!
        ctx.reset()
        ctx.beginPath();
张磊 已提交
162 163 164 165 166 167 168 169 170 171 172
        var horn = 5; // 画5个角
        var angle = 360 / horn; // 五个角的度数
        // 两个圆的半径
        var R = 50;
        var r = 20;
        // 坐标
        var x = 100;
        var y = 100;
        for (var i = 0; i < horn; i++) {
          // 角度转弧度:角度/180*Math.PI
          // 外圆顶点坐标
173
          ctx.lineTo(Math.cos((18 + i * angle) / 180.0 * Math.PI) * R + x, -Math.sin((18 + i * angle) / 180.0 * Math.PI) * R + y);
张磊 已提交
174
          // 內圆顶点坐标
175
          ctx.lineTo(Math.cos((54 + i * angle) / 180.0 * Math.PI) * r + x, -Math.sin((54 + i * angle) / 180.0 * Math.PI) * r + y);
张磊 已提交
176 177
        }
        // closePath:关闭路径,将路径的终点与起点相连
178 179 180 181 182 183
        ctx.closePath();
        ctx.lineWidth = 3;
        ctx.fillStyle = '#E4EF00';
        ctx.strokeStyle = "red";
        ctx.fill();
        ctx.stroke();
张磊 已提交
184

185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
        ctx.lineWidth = 10;
        ctx.beginPath()
        ctx.moveTo(170, 100)
        ctx.lineTo(255, 15)
        ctx.lineTo(340, 100)
        ctx.closePath()
        ctx.fill()
        ctx.strokeStyle = "blue"
        ctx.stroke()
        ctx.beginPath()
        ctx.moveTo(170, 145)
        ctx.lineTo(255, 45)
        ctx.lineTo(340, 145)
        ctx.closePath()
        ctx.fill()
        ctx.strokeStyle = "gray"
        ctx.stroke()
张磊 已提交
202
        // 未设置beginPath,导致上下表现一致,与前端一致
203 204 205 206 207 208 209 210 211
        ctx.moveTo(170, 190)
        ctx.lineTo(255, 90)
        ctx.lineTo(340, 190)
        ctx.closePath()
        ctx.fillStyle = "orange"
        ctx.fill()
        ctx.strokeStyle = "khaki"
        ctx.stroke()
        ctx.update()
张磊 已提交
212 213 214 215 216 217 218 219
      },
      hex(num : number) : string {
        if (num == 0) {
          return "00"
        }
        let hexChars = "0123456789ABCDEF";
        let result = "";
        while (num > 0) {
220
          let remainder = Math.floor(num) % 16;
张磊 已提交
221
          result = hexChars[remainder] + result;
222
          num = Math.floor(Math.floor(num) / 16);
张磊 已提交
223 224 225 226 227 228 229
        }
        if (result.length == 1) {
          return "0" + result
        }
        return result
      },
      drawhouse() {
230 231 232
        let ctx = uni.getElementById('draw-house')!.getDrawableContext()!
        ctx.reset()
        ctx.lineWidth = 10;
张磊 已提交
233

张磊 已提交
234
        // Wall
235
        ctx.strokeRect(75, 140, 150, 110);
张磊 已提交
236

张磊 已提交
237
        // Door
238
        ctx.fillRect(130, 190, 40, 60);
张磊 已提交
239

张磊 已提交
240
        // Roof
241 242 243 244 245 246 247
        ctx.beginPath();
        ctx.moveTo(50, 140);
        ctx.lineTo(150, 60);
        ctx.lineTo(250, 140);
        ctx.closePath();
        ctx.stroke();
        ctx.update()
张磊 已提交
248 249
      },
      drawPoint() {
250 251
        let ctx = uni.getElementById('draw-style')!.getDrawableContext()!
        ctx.reset()
张磊 已提交
252 253
        for (let i = 0; i < 6; i++) {
          for (let j = 0; j < 6; j++) {
254 255 256 257
            ctx.strokeStyle = `rgb(0,${Math.floor(255 - 42.5 * i)},${Math.floor(255 - 42.5 * j)})`;
            ctx.beginPath();
            ctx.arc(12.5 + j * 25, 12.5 + i * 25, 10, 0, Math.PI * 2, true);
            ctx.stroke();
张磊 已提交
258 259 260 261
          }
        }
        for (let i = 0; i < 6; i++) {
          for (let j = 0; j < 6; j++) {
262 263
            ctx.fillStyle = `rgb(${Math.floor(255 - 42.5 * i)},${Math.floor(255 - 42.5 * j)},0)`;
            ctx.fillRect(180 + j * 25, i * 25, 25, 25);
张磊 已提交
264 265
          }
        }
266
        ctx.update()
张磊 已提交
267 268
      },
      drawRect() {
269 270
        let ctx = uni.getElementById('draw-odd')!.getDrawableContext()!
        ctx.reset()
张磊 已提交
271
        // Create path
272 273 274 275 276 277 278
        ctx.moveTo(30, 90);
        ctx.lineTo(110, 20);
        ctx.lineTo(240, 130);
        ctx.lineTo(60, 130);
        ctx.lineTo(190, 20);
        ctx.lineTo(270, 90);
        ctx.closePath();
张磊 已提交
279

张磊 已提交
280
        // Fill path
281 282 283
        ctx.fillStyle = "green";
        ctx.fill("evenodd");
        ctx.update()
张磊 已提交
284

张磊 已提交
285 286
      },
      drawArcTo() {
287 288 289 290 291 292
        let ctx = uni.getElementById('draw-arcto')!.getDrawableContext()!
        ctx.reset()
        ctx.beginPath();
        ctx.moveTo(50, 20);
        ctx.bezierCurveTo(230, 30, 150, 60, 50, 100);
        ctx.stroke();
张磊 已提交
293

294
        ctx.fillStyle = "blue";
张磊 已提交
295
        // start point
296
        ctx.fillRect(50, 20, 10, 10);
张磊 已提交
297
        // end point
298
        ctx.fillRect(50, 100, 10, 10);
张磊 已提交
299

300
        ctx.fillStyle = "red";
张磊 已提交
301
        // control point one
302
        ctx.fillRect(230, 30, 10, 10);
张磊 已提交
303
        // control point two
304 305
        ctx.fillRect(150, 70, 10, 10);
        ctx.update()
张磊 已提交
306 307 308
      }
    }
  }
张磊 已提交
309 310 311
</script>

<style>
H
hdx 已提交
312 313 314 315 316
  .drawing {
    height: 275px;
    background-color: lightgray;
    margin-bottom: 15px;
  }
张磊 已提交
317
</style>