<template>
<div class="img-verify">
<canvas ref="verify" :width="width" :height="height" @click="handleDraw"></canvas>
</div>
</template>
n
<script type="text/ecmascript-6">
import { reactive, onMounted, ref, toRefs } from 'vue'
export default {
setup() {
const verify = ref(null)
const state = reactive({
pool: 'ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890',
width: 120,
height: 40,
})
onMounted(() => {
draw()
})
const handleDraw = () => {
draw()
}
const randomNum = (min, max) => {
return parseInt(Math.random() * (max - min) + min)
}
const randomColor = (min, max) => {
const r = randomNum(min, max)
const g = randomNum(min, max)
const b = randomNum(min, max)
return `rgb(${r},${g},${b})`
}
const draw = () => {
const ctx = verify.value.getContext('2d')
ctx.fillStyle = randomColor(180, 230)
ctx.fillRect(0, 0, state.width, state.height)
for (let i = 0; i < 4; i++) {
const text = state.pool[randomNum(0, state.pool.length)]
const fontSize = randomNum(18, 40)
const deg = randomNum(-30, 30)
ctx.font = fontSize + 'px Simhei'
ctx.textBaseline = 'top'
ctx.fillStyle = randomColor(80, 150)
ctx.save()
ctx.translate(30 * i + 15, 15)
ctx.rotate((deg * Math.PI) / 180)
ctx.fillText(text, -15 + 5, -15)
ctx.restore()
}
}
return {
...toRefs(state),
verify,
handleDraw
}
}
}
</script>
<style type="text/css">
.img-verify canvas {
cursor: pointer;
}
</style>