vue---identify圖形驗(yàn)證碼插件封裝 一步步 教你如何封裝

下載: npm install identify

在 入口 main.js里面引入‘

import SIdentify from './component/identify.vue'

Vue.use(SIdentify)

新建identify.vue組件可以全部復(fù)制進(jìn)去

export default{

name: 'SIdentify',

props: {

identifyCode: {

type: String,

default: '1234'

},

fontSizeMin: {

type: Number,

default: 16

},

fontSizeMax: {

type: Number,

default: 40

},

backgroundColorMin: {

type: Number,

default: 180

},

backgroundColorMax: {

type: Number,

default: 240

},

colorMin: {

type: Number,

default: 50

},

colorMax: {

type: Number,

default: 160

},

lineColorMin: {

type: Number,

default: 40

},

lineColorMax: {

type: Number,

default: 180

},

dotColorMin: {

type: Number,

default: 0

},

dotColorMax: {

type: Number,

default: 255

},

contentWidth: {

type: Number,

default: 112

},

contentHeight: {

type: Number,

default: 38

}

},

methods: {

// 生成一個(gè)隨機(jī)數(shù)

randomNum (min, max) {

return Math.floor(Math.random() * (max - min) + min)

},

// 生成一個(gè)隨機(jī)的顏色

randomColor (min, max) {

let r = this.randomNum(min, max)

let g = this.randomNum(min, max)

let b = this.randomNum(min, max)

return 'rgb(' + r + ',' + g + ',' + b + ')'

},

drawPic () {

let canvas = document.getElementById('s-canvas')

let ctx = canvas.getContext('2d')

ctx.textBaseline = 'bottom'

// 繪制背景

ctx.fillStyle = this.randomColor(this.backgroundColorMin, this.backgroundColorMax)

ctx.fillRect(0, 0, this.contentWidth, this.contentHeight)

// 繪制文字

for (let i = 0; i < this.identifyCode.length; i++) {

this.drawText(ctx, this.identifyCode[i], i)

}

this.drawLine(ctx)

this.drawDot(ctx)

},

drawText (ctx, txt, i) {

ctx.fillStyle = this.randomColor(this.colorMin, this.colorMax)

ctx.font = this.randomNum(this.fontSizeMin, this.fontSizeMax) + 'px SimHei'

let x = (i + 1) * (this.contentWidth / (this.identifyCode.length + 1))

let y = this.randomNum(this.fontSizeMax, this.contentHeight - 5)

var deg = this.randomNum(-45, 45)

// 修改坐標(biāo)原點(diǎn)和旋轉(zhuǎn)角度

ctx.translate(x, y)

ctx.rotate(deg * Math.PI / 180)

ctx.fillText(txt, 0, 0)

// 恢復(fù)坐標(biāo)原點(diǎn)和旋轉(zhuǎn)角度

ctx.rotate(-deg * Math.PI / 180)

ctx.translate(-x, -y)

},

drawLine (ctx) {

// 繪制干擾線

for (let i = 0; i < 8; i++) {

ctx.strokeStyle = this.randomColor(this.lineColorMin, this.lineColorMax)

ctx.beginPath()

ctx.moveTo(this.randomNum(0, this.contentWidth), this.randomNum(0, this.contentHeight))

ctx.lineTo(this.randomNum(0, this.contentWidth), this.randomNum(0, this.contentHeight))

ctx.stroke()

}

},

drawDot (ctx) {

// 繪制干擾點(diǎn)

for (let i = 0; i < 100; i++) {

ctx.fillStyle = this.randomColor(0, 255)

ctx.beginPath()

ctx.arc(this.randomNum(0, this.contentWidth), this.randomNum(0, this.contentHeight), 1, 0, 2 * Math.PI)

ctx.fill()

}

}

},

watch: {

identifyCode () {

this.drawPic()

}

},

mounted () {

this.drawPic()

}

}

在子組件使用

import SIdentify from '../../component/identify.vue'

export default {

data(){

return {

identifyCodes: "1234567890",

identifyCode: ""

}

},

mounted() {

this.identifyCode = "";

this.makeCode(this.identifyCodes, 4);

},

methods: {

randomNum(min, max) {

return Math.floor(Math.random() * (max - min) + min);

},

refreshCode() {

this.identifyCode = "";

this.makeCode(this.identifyCodes, 4);

},

makeCode(o, l) {

for (let i = 0; i < l; i++) {

this.identifyCode += this.identifyCodes[

this.randomNum(0, this.identifyCodes.length)

];

}

console.log(this.identifyCode);

}

},

//注冊標(biāo)簽組件

components: {

SIdentify

}

}

.code {

margin: 400px auto;

width: 114px;

height: 40px;

border: 1px solid red;

}

OK? 可以了

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子跑揉,更是在濱河造成了極大的恐慌雳攘,老刑警劉巖竖配,帶你破解...
    沈念sama閱讀 207,113評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件哨鸭,死亡現(xiàn)場離奇詭異,居然都是意外死亡粥谬,警方通過查閱死者的電腦和手機(jī)肛根,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,644評(píng)論 2 381
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來漏策,“玉大人派哲,你說我怎么就攤上這事〔粲鳎” “怎么了芭届?”我有些...
    開封第一講書人閱讀 153,340評(píng)論 0 344
  • 文/不壞的土叔 我叫張陵,是天一觀的道長感耙。 經(jīng)常有香客問我褂乍,道長,這世上最難降的妖魔是什么抑月? 我笑而不...
    開封第一講書人閱讀 55,449評(píng)論 1 279
  • 正文 為了忘掉前任树叽,我火速辦了婚禮,結(jié)果婚禮上谦絮,老公的妹妹穿的比我還像新娘题诵。我一直安慰自己,他們只是感情好层皱,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,445評(píng)論 5 374
  • 文/花漫 我一把揭開白布性锭。 她就那樣靜靜地躺著,像睡著了一般叫胖。 火紅的嫁衣襯著肌膚如雪草冈。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,166評(píng)論 1 284
  • 那天瓮增,我揣著相機(jī)與錄音怎棱,去河邊找鬼。 笑死绷跑,一個(gè)胖子當(dāng)著我的面吹牛拳恋,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播砸捏,決...
    沈念sama閱讀 38,442評(píng)論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼谬运,長吁一口氣:“原來是場噩夢啊……” “哼隙赁!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起梆暖,我...
    開封第一講書人閱讀 37,105評(píng)論 0 261
  • 序言:老撾萬榮一對(duì)情侶失蹤伞访,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后轰驳,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體厚掷,經(jīng)...
    沈念sama閱讀 43,601評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,066評(píng)論 2 325
  • 正文 我和宋清朗相戀三年滑废,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了蝗肪。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片袜爪。...
    茶點(diǎn)故事閱讀 38,161評(píng)論 1 334
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡蠕趁,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出辛馆,到底是詐尸還是另有隱情俺陋,我是刑警寧澤,帶...
    沈念sama閱讀 33,792評(píng)論 4 323
  • 正文 年R本政府宣布昙篙,位于F島的核電站腊状,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏苔可。R本人自食惡果不足惜缴挖,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,351評(píng)論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望焚辅。 院中可真熱鬧映屋,春花似錦、人聲如沸同蜻。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,352評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽湾蔓。三九已至瘫析,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間默责,已是汗流浹背贬循。 一陣腳步聲響...
    開封第一講書人閱讀 31,584評(píng)論 1 261
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留桃序,地道東北人杖虾。 一個(gè)月前我還...
    沈念sama閱讀 45,618評(píng)論 2 355
  • 正文 我出身青樓,卻偏偏與公主長得像葡缰,于是被迫代替她去往敵國和親亏掀。 傳聞我的和親對(duì)象是個(gè)殘疾皇子忱反,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,916評(píng)論 2 344

推薦閱讀更多精彩內(nèi)容