


This example shows how to build the combined effect of two nodes, a connection, and a Group. It can be easily understood that building a topological interface is basically to operate DataModel dataModel. The following is the model code part that builds the effect of the above interface:
// init data modelhello = new ht.Node(); hello.setPosition(60, 140); hello.setName('Hello'); hello.setStyle('note', 'I love HT'); hello.setStyle('note.background', '#FFA000'); dataModel.add(hello); world = new ht.Node(); world.setPosition(260, 80); world.setName('World'); world.setStyle('note', 'HT for your imagination'); world.setStyle('note.expanded', false); world.setStyle('border.color', 'red'); dataModel.add(world); edge = new ht.Edge(hello, world); edge.setName('Hello World\nwww.hightopo.com'); edge.setStyle('label.color', 'white'); edge.setStyle('label.background', '#3498DB'); dataModel.add(edge); group = new ht.Group(); group.setName('HT for Web ' + ht.Default.getVersion()); group.addChild(hello); group.addChild(world); group.addChild(edge); dataModel.add(group);
Of course, the real system will not look like the above code. The content is hard-coded. Generally, users query the background data, and then dynamically create topological nodes, connections, groups, subnets and other graphic elements based on the background data, and fill in the graphic element names, connection colors, alarm contents, etc. Attribute information, and because HT technology is based on HTML5, most industrial control Web SCADA customers have adopted the real-time communication method of WebSocket. For information on the use of WebSocket, please refer to this article: 3D topology automatic layout of Node. js Article
Building a model is as simple as above. The remaining work is to set the corresponding graphic element attributes to achieve information display and beautiful effects. Regarding the customization of graphic elements and even the overall HT graphic component style, you can Referring to the "HT for Web Style Manual", here I give a simple little detail, but some people noticed that the code for setting the label above is a bit special:
edge.setName('Hello World\nwww.hightopo.com');
Here\n As the name suggests, it means line break, of course except for line break In addition, you can also have vertical layout and other fancy display forms. You can refer to the introduction of the article "Smart Application of Text on Network Topology Map":
var list = [], node;for (var i = 0; i < 4; i++) { node = new ht.Node(); node.setImage('station'); node.p(100 + i * 100, 100); dm.add(node); list.push(node); } node = list[0]; node.s({ 'label': '厦门', 'label.font': '22px arial, sans-serif', 'label2': 'Xiamen', 'label2.position': 31, 'label2.offset.y': 23}); node = list[1]; node.s({ 'label': '图\n扑', 'label.position': 14, 'label.font': '22px arial, sans-serif', 'label2': 'Hightopo', 'label2.position': 14, 'label2.offset.x': -7, 'label2.rotation': -Math.PI / 2}); node = list[2]; node.s({ 'label': '上\n海', 'label.position': 20, 'label.font': '22px arial, sans-serif', 'label2': 'Shanghai', 'label2.position': 20, 'label2.offset.x': 6, 'label2.rotation': -Math.PI / 2}); node = list[3]; node.s({ 'label': '北京', 'label.position': 3, 'label.font': '22px arial, sans-serif', 'label2': 'Beijing', 'label2.position': 3, 'label2.offset.y': -23});
Of course, it can also be achieved. To achieve the effect of dynamically rotating text, drag the red ball below to achieve the effect of dynamically rotating text:
From the above example, you can refer to just a text and set the color and background. , font, maximum length and other parameters. If you add the Position layout and 3D layout, you can almost write an independent article based on text. This is not enough here. If you are interested, you can play with various examples of the position manual:
After constructing the connection relationship of the primitives and setting the style attributes of the primitives, the next main issue is the placement of primitives. For the placement of primitives in the field of industrial control, it is generally It is done manually, so the Web SCADA industrial control field generally builds a set of HMI human-machine interface drawing tools for its own products:
For telecommunications network management topology applications, due to the network topology The amount of graph element data is often very huge. Although the HT topology graph component is very powerful and can carry several or even hundreds of thousands of network topologyvector graph elements without any pressure, how to realize such a large amount of data elements? The layout is a problem. If it is regular, it will be easier. You can write two for loops to realize the grid layout. This example is generally used in the energy industry control system. By using the vector format of HT, the fan can be dynamically controlled. Parameters such as rotation speed and color can visually express the operating status of the fan. This example is not specially optimized for mobile phones, but I specifically used iOS Safari to run it. I have to say that Safari 10 is still worthy of this example of HT. Apple is still working hard to improve HTML5 in its product line. The
#ECMAScript 2015standard, also known as ES6, is completely supported, bringing this major
JavaScriptevolution to Safari on macOS and iOS.
However, more telecom network management topology map applications will use the automatic layout function of HT. Making good use of the automatic layout function can greatly reduce the implementation workload of project launch, and telecom equipment often needs to automatically detect dynamic changes, which is almost impossible to complete manually. These things. If combined with the recent remarks of Huawei boss Ren Zhengfei, it can be imagined that Huawei's telecom network management topology in the future should make use of its unique industry network data and rely on artificial intelligence to provide automatic layout algorithm layout. Okay, let me digress and get back to the topic.
In fact, automatic layout cannot provide algorithms to place graphics elements in order to meet the needs of business display. These two articles analyze in detail how to customize the bus and any arbitrary Curve layout case:
The above is to create a network primitive, set the connection relationship between the primitives, configure the style attributes of the primitives, and layout the primitives to construct the topology diagram. With a few basic steps, you can actually develop a decent HTML5 network topology map application in minutes if you are familiar with HT. Users can serialize the entire topology map into a string of JSON format content, so that you can save it to the backend database or backend. Any server file is acceptable. HT is just a front-end graphical component and does not involve backend communication and storage. Anyway, the control is yours without any constraints. You can design the overall system architecture of your network topology as you like.
The above is the detailed content of Detailed explanation of rapid development of applications based on HTML5 network topology diagram (pictures and text). For more information, please follow other related articles on the PHP Chinese website!

html5的div元素默认一行不可以放两个。div是一个块级元素,一个元素会独占一行,两个div默认无法在同一行显示;但可以通过给div元素添加“display:inline;”样式,将其转为行内元素,就可以实现多个div在同一行显示了。

html5中列表和表格的区别:1、表格主要是用于显示数据的,而列表主要是用于给数据进行布局;2、表格是使用table标签配合tr、td、th等标签进行定义的,列表是利用li标签配合ol、ul等标签进行定义的。

固定方法:1、使用header标签定义文档头部内容,并添加“position:fixed;top:0;”样式让其固定不动;2、使用footer标签定义尾部内容,并添加“position: fixed;bottom: 0;”样式让其固定不动。

HTML5中画布标签是“<canvas>”。canvas标签用于图形的绘制,它只是一个矩形的图形容器,绘制图形必须通过脚本(通常是JavaScript)来完成;开发者可利用多种js方法来在canvas中绘制路径、盒、圆、字符以及添加图像等。

html5中不支持的标签有:1、acronym,用于定义首字母缩写,可用abbr替代;2、basefont,可利用css样式替代;3、applet,可用object替代;4、dir,定义目录列表,可用ul替代;5、big,定义大号文本等等。

html5废弃了dir列表标签。dir标签被用来定义目录列表,一般和li标签配合使用,在dir标签对中通过li标签来设置列表项,语法“<dir><li>列表项值</li>...</dir>”。HTML5已经不支持dir,可使用ul标签取代。

3种取消方法:1、给td元素添加“border:none”无边框样式即可,语法“td{border:none}”。2、给td元素添加“border:0”样式,语法“td{border:0;}”,将td边框的宽度设置为0即可。3、给td元素添加“border:transparent”样式,语法“td{border:transparent;}”,将td边框的颜色设置为透明即可。

html5是指超文本标记语言(HTML)的第五次重大修改,即第5代HTML。HTML5是Web中核心语言HTML的规范,用户使用任何手段进行网页浏览时看到的内容原本都是HTML格式的,在浏览器中通过一些技术处理将其转换成为了可识别的信息。HTML5由不同的技术构成,其在互联网中得到了非常广泛的应用,提供更多增强网络应用的标准机。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Zend Studio 13.0.1
Powerful PHP integrated development environment

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.
