成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

怎么在vue中利用vis-network實現(xiàn)網(wǎng)絡(luò)拓?fù)鋱D

本篇文章為大家展示了怎么在vue中利用vis-network 實現(xiàn)網(wǎng)絡(luò)拓?fù)鋱D,內(nèi)容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細(xì)介紹希望你能有所收獲。

創(chuàng)新互聯(lián)公司 - 四川雅安電信機房,四川服務(wù)器租用,成都服務(wù)器租用,四川網(wǎng)通托管,綿陽服務(wù)器托管,德陽服務(wù)器托管,遂寧服務(wù)器托管,綿陽服務(wù)器托管,四川云主機,成都云主機,西南云主機,四川雅安電信機房,西南服務(wù)器托管,四川/成都大帶寬,機柜大帶寬,四川老牌IDC服務(wù)商

vs  code 下安裝命令

npm install vis-network

在vue  下引入 vis-network組件

const vis = require("vis-network/dist/vis-network.min.js");
require("vis-network/dist/vis-network.min.css");

例子代碼使用

let DIR = "/jtopo/";
let nodes = [
{ id: 1, shape: "circularImage", image: DIR + "server.png" },
{ id: 2, shape: "circularImage", image: DIR + "server.png" },
{ id: 3, shape: "circularImage", image: DIR + "server.png" },
{
id: 4,
shape: "circularImage",
image: DIR + "gather.png",
label: "pictures by this guy!"
},
{ id: 5, shape: "circularImage", image: DIR + "wanjet.png" },
{ id: 6, shape: "circularImage", image: DIR + "center.png" },
{ id: 7, shape: "circularImage", image: DIR + "cloud.png" },
{ id: 8, shape: "circularImage", image: DIR + "center.png" },
{ id: 9, shape: "circularImage", image: DIR + "wanjet.png" },
{ id: 10, shape: "circularImage", image: DIR + "gather.png" }
// { id: 11, shape: "circularImage", image: DIR + "11.png" },
// { id: 12, shape: "circularImage", image: DIR + "12.png" },
// { id: 13, shape: "circularImage", image: DIR + "13.png" },
// { id: 14, shape: "circularImage", image: DIR + "14.png" },
// {
// id: 15,
// shape: "circularImage",
// image: DIR + "missing.png",
// brokenImage: DIR + "missingBrokenImage.png",
// label: "when images\nfail\nto load"
// },
// {
// id: 16,
// shape: "circularImage",
// image: DIR + "anotherMissing.png",
// brokenImage: DIR + "9.png",
// label: "fallback image in action"
// }
];
let edges = [
{ from: 1, to: 4 },
{ from: 2, to: 4 },
{ from: 3, to: 4 },
{ from: 4, to: 5 },
{ from: 5, to: 6 },
{ from: 6, to: 7 },
{ from: 8, to: 7 },
{ from: 9, to: 8 },
{ from: 10, to: 9 }
// { from: 8, to: 10 },
// { from: 10, to: 11 },
// { from: 11, to: 12 },
// { from: 12, to: 13 },
// { from: 13, to: 14 },
// { from: 9, to: 16 }
];
for (let i = 1; i <= 100; i++) {
num = i + 10;
nodes.push({
id: num,
label: num.toString()
});
edges.push({ from: num, to: 10 });
}
let data = {
nodes: nodes,
edges: edges
};
let container = document.getElementById("mynetwork");
//let options = {};
let options = {
nodes: {
font: {
color: "white", //字體的顏色
size: 30 //顯示字體大小
},
scaling: {
min: 16,
max: 32 //縮放效果比例
},
borderWidth: 0,
color: {
border: "white",
background: "white" //若是引用圖標(biāo),背景顏色
}
},
groups: {
ws: {
//系統(tǒng)定義的形狀 dot等 這些官網(wǎng)都可以找到
shape: "dot",
color: "white"
}
},
edges: {
//連接線的樣式
color: {
color: "white",
highlight: "white",
hover: "#848484",
inherit: "from",
opacity: 1.0
}
},
layout: {
randomSeed: 1 //配置每次生成的節(jié)點位置都一樣,參數(shù)為數(shù)字1、2等
},
physics: {
// barnesHut: { gravitationalConstant: -30000 },
barnesHut: {
gravitationalConstant: -80000,
springConstant: 0.001,
springLength: 200
},
stabilization: false
//{ iterations: 2500 }
},
interaction: {
// navigationButtons: true,
hover: true, //鼠標(biāo)移過后加粗該節(jié)點和連接線
selectConnectedEdges: false, //選擇節(jié)點后是否顯示連接線
hoverConnectedEdges: false, //鼠標(biāo)滑動節(jié)點后是否顯示連接線
tooltipDelay: 200,
zoomView: true //是否能縮放畫布
},
edges: {
shadow: true, //連接線陰影配置
smooth: true //是否顯示方向箭頭
// arrows: {to : true }//箭頭指向from節(jié)點
}
};
that.network = new vis.Network(container, data, options);
that.network.on("click", function(params) {});

vue是什么

Vue是一套用于構(gòu)建用戶界面的漸進式JavaScript框架,Vue與其它大型框架的區(qū)別是,使用Vue可以自底向上逐層應(yīng)用,其核心庫只關(guān)注視圖層,方便與第三方庫和項目整合,且使用Vue可以采用單文件組件和Vue生態(tài)系統(tǒng)支持的庫開發(fā)復(fù)雜的單頁應(yīng)用。

上述內(nèi)容就是怎么在vue中利用vis-network 實現(xiàn)網(wǎng)絡(luò)拓?fù)鋱D,你們學(xué)到知識或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識儲備,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。

文章標(biāo)題:怎么在vue中利用vis-network實現(xiàn)網(wǎng)絡(luò)拓?fù)鋱D
標(biāo)題網(wǎng)址:http://jinyejixie.com/article24/ppisce.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供靜態(tài)網(wǎng)站、自適應(yīng)網(wǎng)站關(guān)鍵詞優(yōu)化、企業(yè)建站網(wǎng)站建設(shè)、Google

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

成都seo排名網(wǎng)站優(yōu)化
翁牛特旗| 黔西县| 镇康县| 闽清县| 广平县| 永定县| 会东县| 朝阳区| 沾化县| 美姑县| 大化| 吉林市| 武胜县| 内丘县| 内丘县| 炉霍县| 自治县| 林芝县| 大关县| 始兴县| 内丘县| 岗巴县| 恩平市| 洞头县| 张掖市| 睢宁县| 五峰| 伊川县| 积石山| 安阳市| 紫云| 新乡县| 施甸县| 沧源| 常山县| 遵义县| 宜兰市| 东辽县| 石楼县| 辽中县| 永丰县|