JQuery_JavaScript___plug__jsPlumb.js UI连线插件使用

本文主要是介绍JQuery_JavaScript___plug__jsPlumb.js UI连线插件使用,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!


GitHub地址:https://github.com/xiaohulu/util_xiaohulu/tree/master/web/plug_in/jsPlumb_

所需三个js文件:




效果图




代码:


<!DOCTYPE html>
<html><head><script src="jsPlumb_files/jquery-1.9.0.js"></script><script src="jsPlumb_files/jquery-ui-1.9.2-min.js"></script><script src="jsPlumb_files/jquery.jsPlumb-1.4.0-all.js"></script><title>jsPlumb_demo</title><meta charset="UTF-8"><style type="text/css">/**当拖动一个连接点时,可连接的连接点会自动使用该css**/.dragActive {border: 2px dotted orange;}/**当拖动一个连接点到可连接的点时,该点会自动使用该css**/.dropHover {border: 1px dotted red;}.item {border: 1px solid black;background-color: #ddddff;width: 100px;height: 100px;position: absolute;}#state1 {left: 100px;top: 100px;}#state2 {left: 350px;top: 150px;}#state3 {left: 100px;top: 350px;}#state4 {left: 300px;top: 350px;}</style><script>//初始化jsPlumb.ready(function () {//首先,我们给jsPlumb设一些默认值,然后声明一个exampleDropOptions变量。jsPlumb.importDefaults({DragOptions: { cursor: 'pointer'},	//拖动时鼠标停留在该元素上显示指针,通过css控制PaintStyle: { strokeStyle: '#666' },//元素的默认颜色EndpointStyle: { width: 20, height: 16, strokeStyle: '#567567' },//连接点的默认颜色Endpoint: [ "Dot", { radius: 5 } ],//连接点的默认形状Connector: [ "Bezier", { curviness: 150 } ],Anchors: [ "TopCenter", "BottomCenter" ],//连接点的默认位置ConnectionOverlays: [//连接覆盖图["Arrow", {location: 1,id: "arrow",length: 14,foldback: 1}],["Label", {location: 0.5,id: "label",cssClass: "aLabel"}]]});var exampleDropOptions = {hoverClass: "dropHover",//释放时指定鼠标停留在该元素上使用的css classactiveClass: "dragActive"//可拖动到的元素使用的css class};// 绑定到连接/ connectionDetached事件,和更新的列表在屏幕上的连接。jsPlumb.bind("connection", function (info, originalEvent) {updateConnections(info.connection);});jsPlumb.bind("connectionDetached", function (info, originalEvent) {updateConnections(info.connection, true);});function updateConnections(info) {alert("连接线ID:" + info.id + "\n连接线sourceID:" + info.sourceId + "\n连接线targetID:" + info.targetId);alert(info.endpoints[0].getUuid().substr(info.endpoints[0].getUuid().indexOf('-') + 1));}//添加jsPlumb连接点var color1 = "#316b31";var exampleEndpoint1 = {endpoint: ["Dot", { radius: 5 }],//设置连接点的形状为圆形paintStyle: { fillStyle: color1 },//设置连接点的颜色isSource: true,	//是否可以拖动(作为连线起点)scope: "green dot",//连接点的标识符,只有标识符相同的连接点才能连接connectorStyle: { strokeStyle: color1, lineWidth: 6 },//连线颜色、粗细connector: ["Bezier", { curviness: 10 } ],//设置连线为贝塞尔曲线maxConnections: 1,//设置连接点最多可以连接几条线isTarget: true,	//是否可以放置(作为连线终点)dropOptions: exampleDropOptions//设置放置相关的css};var color2 = "rgba(229,219,61,0.5)";var exampleEndpoint2 = {endpoint: "Rectangle",	//设置连接点的形状为矩形paintStyle: {//设置连接点的大小、颜色、透明度width: 25,height: 21,fillStyle: "red",opacity: 0.5},anchor: "BottomLeft",	//设置连接点的位置,左下角isSource: true, //是否可以拖动(作为连线起点)scope: 'yellow dot',	//连接点的标识符,只有标识符相同的连接点才能连接connectorStyle: { strokeStyle: color2, lineWidth: 4},//连线颜色、粗细//connector: "Straight",	//设置连线为直线connector: "Flowchart",//设置为流程图线isTarget: true,//是否可以放置(作为连线终点)maxConnections: 3,//设置连接点最多可以连接几条线  [-1为无限制]dropOptions: exampleDropOptions,//设置放置相关的cssbeforeDetach: function (conn) {	//绑定一个函数,在连线前弹出确认框return confirm("断开连接?");},onMaxConnections: function (info) {//绑定一个函数,当到达最大连接个数时弹出提示框alert("Cannot drop connection " + info.connection.id + " : maxConnections has been reached on Endpoint " + info.endpoint.id);}};var exampleEndpoint3 = {endpoint: "Rectangle",	//设置连接点的形状为矩形paintStyle: {//设置连接点的大小、颜色、透明度width: 25,height: 21,fillStyle: "blue",opacity: 0.5},anchor: "BottomLeft",	//设置连接点的位置,左下角isSource: true, //是否可以拖动(作为连线起点)scope: 'blue dot',	//连接点的标识符,只有标识符相同的连接点才能连接connectorStyle: { strokeStyle: color2, lineWidth: 4},//连线颜色、粗细//connector: "Straight",	//设置连线为直线connector: "Flowchart",//设置为流程图线isTarget: true,//是否可以放置(作为连线终点)maxConnections: -1,//设置连接点最多可以连接几条线  [-1为无限制]dropOptions: exampleDropOptions,//设置放置相关的cssbeforeDetach: function (conn) {	//绑定一个函数,在连线前弹出确认框return confirm("断开连接?");},onMaxConnections: function (info) {//绑定一个函数,当到达最大连接个数时弹出提示框alert("Cannot drop connection " + info.connection.id + " : maxConnections has been reached on Endpoint " + info.endpoint.id);}};//将连接点绑定到html元素上var anchors = [[1, 0.2, 1, 0],[0.8, 1, 0, 1],[0, 0.8, -1, 0],[0.2, 0, 0, -1]],maxConnectionsCallback = function (info) {alert("Cannot drop connection " + info.connection.id + " : maxConnections has been reached on Endpoint " + info.endpoint.id);};var e1 = jsPlumb.addEndpoint("state2", { anchor: "LeftMiddle" }, exampleEndpoint1);//将exampleEndpoint1类型的点绑定到id为state2的元素上e1.bind("maxConnections", maxConnectionsCallback);//也可以在加到元素上之后绑定函数jsPlumb.addEndpoint("state1", exampleEndpoint1);//将exampleEndpoint1类型的点绑定到id为state1的元素上jsPlumb.addEndpoint("state3", exampleEndpoint2);//将exampleEndpoint2类型的点绑定到id为state3的元素上jsPlumb.addEndpoint("state1", {anchor: anchors}, exampleEndpoint2);//将exampleEndpoint2类型的点绑定到id为state1的元素上,指定活动连接点jsPlumb.addEndpoint("state3", {anchor: anchors}, exampleEndpoint3);//将exampleEndpoint2类型的点绑定到id为state1的元素上,指定活动连接点jsPlumb.addEndpoint("state4", {anchor: anchors}, exampleEndpoint3);//将exampleEndpoint2类型的点绑定到id为state1的元素上,指定活动连接点//设置连接线jsPlumb.connect({source: "state3",target: "state2"});});</script>
</head><body>
//html部分仅声明三个div,注意,jsPlumb通过id来识别html元素,因此如果要使用jsPlumb连线必须声明id。
<div id="state1" class="item">state1</div>
<div id="state2" class="item">state2</div>
<div id="state3" class="item">state3</div><div id="state4" class="item">state4</div></body>
</html>


后续研究....待更新...


这篇关于JQuery_JavaScript___plug__jsPlumb.js UI连线插件使用的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1027180

相关文章

SpringBoot中HTTP连接池的配置与优化

《SpringBoot中HTTP连接池的配置与优化》这篇文章主要为大家详细介绍了SpringBoot中HTTP连接池的配置与优化的相关知识,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一... 目录一、HTTP连接池的核心价值二、Spring Boot集成方案方案1:Apache HttpCl

CSS3 布局样式及其应用举例

《CSS3布局样式及其应用举例》CSS3的布局特性为前端开发者提供了无限可能,无论是Flexbox的一维布局还是Grid的二维布局,它们都能够帮助开发者以更清晰、简洁的方式实现复杂的网页布局,本文给... 目录深入探讨 css3 布局样式及其应用引言一、CSS布局的历史与发展1.1 早期布局的局限性1.2

使用animation.css库快速实现CSS3旋转动画效果

《使用animation.css库快速实现CSS3旋转动画效果》随着Web技术的不断发展,动画效果已经成为了网页设计中不可或缺的一部分,本文将深入探讨animation.css的工作原理,如何使用以及... 目录1. css3动画技术简介2. animation.css库介绍2.1 animation.cs

Spring Boot项目打包和运行的操作方法

《SpringBoot项目打包和运行的操作方法》SpringBoot应用内嵌了Web服务器,所以基于SpringBoot开发的web应用也可以独立运行,无须部署到其他Web服务器中,下面以打包dem... 目录一、打包为JAR包并运行1.打包为可执行的 JAR 包2.运行 JAR 包二、打包为WAR包并运行

CSS引入方式和选择符的讲解和运用小结

《CSS引入方式和选择符的讲解和运用小结》CSS即层叠样式表,是一种用于描述网页文档(如HTML或XML)外观和格式的样式表语言,它主要用于将网页内容的呈现(外观)和结构(内容)分离,从而实现... 目录一、前言二、css 是什么三、CSS 引入方式1、行内样式2、内部样式表3、链入外部样式表四、CSS 选

Java进行日期解析与格式化的实现代码

《Java进行日期解析与格式化的实现代码》使用Java搭配ApacheCommonsLang3和Natty库,可以实现灵活高效的日期解析与格式化,本文将通过相关示例为大家讲讲具体的实践操作,需要的可以... 目录一、背景二、依赖介绍1. Apache Commons Lang32. Natty三、核心实现代

使用雪花算法产生id导致前端精度缺失问题解决方案

《使用雪花算法产生id导致前端精度缺失问题解决方案》雪花算法由Twitter提出,设计目的是生成唯一的、递增的ID,下面:本文主要介绍使用雪花算法产生id导致前端精度缺失问题的解决方案,文中通过代... 目录一、问题根源二、解决方案1. 全局配置Jackson序列化规则2. 实体类必须使用Long封装类3.

Spring Boot 常用注解整理(最全收藏版)

《SpringBoot常用注解整理(最全收藏版)》本文系统整理了常用的Spring/SpringBoot注解,按照功能分类进行介绍,每个注解都会涵盖其含义、提供来源、应用场景以及代码示例,帮助开发... 目录Spring & Spring Boot 常用注解整理一、Spring Boot 核心注解二、Spr

Python文件操作与IO流的使用方式

《Python文件操作与IO流的使用方式》:本文主要介绍Python文件操作与IO流的使用方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录一、python文件操作基础1. 打开文件2. 关闭文件二、文件读写操作1.www.chinasem.cn 读取文件2. 写

SpringBoot实现接口数据加解密的三种实战方案

《SpringBoot实现接口数据加解密的三种实战方案》在金融支付、用户隐私信息传输等场景中,接口数据若以明文传输,极易被中间人攻击窃取,SpringBoot提供了多种优雅的加解密实现方案,本文将从原... 目录一、为什么需要接口数据加解密?二、核心加解密算法选择1. 对称加密(AES)2. 非对称加密(R