vue 實(shí)現(xiàn)無(wú)規(guī)則截圖
大家所見(jiàn)到的大多數(shù)都是有規(guī)則截圖,可以應(yīng)付大部分的應(yīng)用場(chǎng)景,但是對(duì)于圖片處理,想要將規(guī)則交給用戶,普通的截圖已經(jīng)滿足不了用戶了,那我們能不能前端實(shí)現(xiàn)圖片的任意規(guī)則截取,接下來(lái)讓我一起探討一下吧!
使用svg中clipPath image標(biāo)簽 通過(guò)id 映射, 動(dòng)態(tài)位置polygon的坐標(biāo),實(shí)現(xiàn)圖片的截取
<div><div @mousemove='mousemove' @mouseup='(e) => {mouseup(e);}'> <!-- 畫(huà)布展示 --> <svg ref='blackSvg' xmlns='http://www.w3.org/2000/svg' > <defs> <clipPath id='clippath'><polygon :points='points'></polygon> </clipPath> </defs> <image xmlns:link='http://www.w3.org/1999/xlink' rel='external nofollow' preserveAspectRatio='none' ></image> </svg> <!-- 拖拽點(diǎn) --> <ul class='interception'> <li v-for='item in 4' :ref='`li${item}`' :key='item' @mousedown='(e) => {mousedown(e, item);}' ></li> </ul> <!-- 底圖展示 --> <img src='https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=3228549874,2173006364&fm=26&gp=0.jpg' alt='' /> <!-- 遮罩層 --> <div class='blackDiv'></div> </div> </div>css部分
<style lang='sass'>.blackDiv width: 100% height: 100% position: absolute top: 0 z-index: 2 background: rgba(0,0,0, 1).content width:300px height:300px text-align: left position: relative .blackSvgposition: absolutetop: 0z-index: 3 .blackImgeposition: absolutetop: 0left: 0width: 300pxheight: 300px .interceptionlist-style: noneposition: absolutetop: 0margin: 0padding: 0z-index: 3>li position: absolute width: 10px height: 10px background: blue border-radius: 50% cursor: pointer &:hovertransform: scale(1.2)transition-duration: .2>li:nth-child(1) top: 10px left: 10px>li:nth-child(2) top: 10px left: 100px>li:nth-child(3) top: 100px left: 100px>li:nth-child(4) top: 100px left: 10px</style><script>
export default { name: ’Canvas’, data() { return { points: ’0 0,300 0,300 300,0 300’, // 圖片展示初始化 status: false, index: 0, disX: 0, disY: 0, coordinates: { // 初始化拖拽點(diǎn)1: [0, 0],2: [300, 0],3: [300, 300],4: [0, 300], }, }; }, mounted() { this.$nextTick(() => { for (let key in this.coordinates) {const left = this.coordinates[key][0];const top = this.coordinates[key][1];this.$refs[`li${key}`].style.left = `${left}px`;this.$refs[`li${key}`].style.top = `${top}px`;if (key == 2 || key == 3) { this.$refs[`li${key}`].style.left = `${left - 10}px`;}if (key == 3 || key == 4) { this.$refs[`li${key}`].style.top = `${top - 10}px`;} } document.onmouseup = () => {this.status = false; }; }); }, methods: { //鼠標(biāo)按下 mousedown(e, index) { this.status = true; this.index = index; this.disX = e.clientX - this.$refs[`li${index}`].offsetLeft; this.disY = e.clientY - this.$refs[`li${index}`].offsetTop; }, // 鼠標(biāo)抬起 mouseup(e) { this.status = false; }, // 鼠標(biāo)移動(dòng) mousemove(e) { if (this.status) {let left = e.clientX - this.disX;let top = e.clientY - this.disY;this.$refs[`li${this.index}`].style.left = `${left}px`;this.$refs[`li${this.index}`].style.top = `${top}px`;this.coordinates[this.index] = [left, top];const pointsArr = [];for (let item in this.coordinates) { pointsArr.push( Array.from(this.coordinates[item], (e) => { return e + 5; }) );}this.points = pointsArr.join(’ ’); } }, },};效果圖展示
github地址--> github.com/lgxin/captu…
以上就是vue 實(shí)現(xiàn)無(wú)規(guī)則截圖的詳細(xì)內(nèi)容,更多關(guān)于vue 無(wú)規(guī)則截圖的資料請(qǐng)關(guān)注好吧啦網(wǎng)其它相關(guān)文章!
相關(guān)文章:
1. 輕松學(xué)習(xí)XML教程2. jsp實(shí)現(xiàn)登錄驗(yàn)證的過(guò)濾器3. css代碼優(yōu)化的12個(gè)技巧4. jsp+servlet簡(jiǎn)單實(shí)現(xiàn)上傳文件功能(保存目錄改進(jìn))5. 利用FastReport傳遞圖片參數(shù)在報(bào)表上展示簽名信息的實(shí)現(xiàn)方法6. xpath簡(jiǎn)介_(kāi)動(dòng)力節(jié)點(diǎn)Java學(xué)院整理7. msxml3.dll 錯(cuò)誤 800c0019 系統(tǒng)錯(cuò)誤:-2146697191解決方法8. jsp EL表達(dá)式詳解9. 解析原生JS getComputedStyle10. jsp cookie+session實(shí)現(xiàn)簡(jiǎn)易自動(dòng)登錄
