<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
vue+jsplumb實現連線繪圖,供大家參考,具體內容如下
jsPlumb是一個比較強大的繪圖元件,它提供了一種方法,主要用於連線網頁上的元素。在現代瀏覽器中,它使用SVG或者Canvas技術,而對於IE8以下(含IE8)的瀏覽器,則使用VML技術。
效果圖
1.安裝
npm install jsplumb --save
2.main.js 引入
import jsPlumb from 'jsplumb' Vue.prototype.$jsPlumb = jsPlumb.jsPlumb
3.範例程式碼
<template> <div> <div id="container"> <div class="left"> <ul> <li v-for="(item,index) in leftList" :key="'left' + index" :id="item.nodeId" name="source"> {{item.name}} </li> </ul> </div> <div class="right"> <ul> <li v-for="(item,index) in rightList" :key="'right' + index" :id="item.nodeId" name="target"> {{item.name}} </li> </ul> </div> </div> </div> </template> <script> export default { name: "linkElementModal", data() { return { jsPlumb: null, // 快取範例化的jsplumb物件 leftList:[ {name: 'xxx_left_1', nodeId: 'left_1'}, {name: 'xxx_left_2', nodeId: 'left_2'}, {name: 'xxx_left_3', nodeId: 'left_3'}, {name: 'xxx_left_4', nodeId: 'left_4'} ], rightList:[ {name: 'xxx_right_1', nodeId: 'right_1'}, {name: 'xxx_right_2', nodeId: 'right_2'}, {name: 'xxx_right_3', nodeId: 'right_3'}, {name: 'xxx_right_4', nodeId: 'right_4'} ] } }, mounted(){ this.showPlumb(); }, methods:{ showPlumb() { this.jsPlumb = this.$jsPlumb.getInstance({ Container: 'container', // 選擇器id EndpointStyle: {radius: 0.11, fill: '#999'}, // 端點樣式 PaintStyle: {stroke: '#999', strokeWidth: 2}, // 繪畫樣式,預設8px線寬 #456 HoverPaintStyle: {stroke: '#994B0A', strokeWidth: 3 }, // 預設懸停樣式 預設為null ConnectionOverlays: [ // 此處可以設定所有箭頭的樣式 ['Arrow', { // 設定引數可以參考中文檔案 location: 1, length: 12, paintStyle: { stroke: '#999', fill: '#999' } }] ], Connector: ['Straight'], // 要使用的預設聯結器的型別:直線,折線,曲線等 DrapOptions: {cursor: 'crosshair', zIndex: 2000} }); this.jsPlumb.batch(() => { for(let i = 0; i < this.leftList.length; i++){ this.initLeaf(this.leftList[i].nodeId, 'source'); } for(let j = 0; j < this.rightList.length; j++){ this.initLeaf(this.rightList[j].nodeId , 'target') } }) this.setjsPlumb(true,true); //點選連線 this.jsPlumb.bind('click', (conn, originalEvent) => { console.log(conn, originalEvent) }) //連線時觸發 this.jsPlumb.bind('connection', (conn, originalEvent) => { console.log(conn.sourceId) console.log(conn.targetId) }) //右鍵觸發 this.jsPlumb.bind('contextmenu', (conn, originalEvent) => { console.log(conn, originalEvent) }) }, // 初始化規則使其可以連線、拖拽 initLeaf(id, type) { const ins = this.jsPlumb; const elem = document.getElementById(id); if (type === 'source') { ins.makeSource(elem, { anchor: [1, 0.5, 0, 0], // 左 上 右 下 allowLoopback: false, //允許回連 maxConnections: -1 //最大連線數(-1表示不限制) }) } else { ins.makeTarget(elem, { anchor: [0, 0.5, 0, 0], allowLoopback: false, maxConnections: -1 }) } }, setjsPlumb(sourceFlag, targetFlag){ const source = document.getElementsByName('source') const target = document.getElementsByName('target') this.jsPlumb.setSourceEnabled(source, sourceFlag) this.jsPlumb.setTargetEnabled(target, targetFlag) this.jsPlumb.setDraggable(source, false) // 是否支援拖拽 this.jsPlumb.setDraggable(target, false) // 是否支援拖拽 }, } } </script> <style> #container{ width: 500px; height: 500px; padding: 20px; position: relative; /*一定加上這句,否則連線位置發生錯亂*/ } .left{ float: left; width: 150px; } .right{ float: right; width: 150px; } .left li,.right li{ width: 100%; border-radius: 4px; border: 1px solid #ccc; background: #efefef; margin-bottom: 20px; padding: 8px 5px; } </style>
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援it145.com。
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45