search
HomeWeb Front-endH5 TutorialDetailed graphic explanation of HTML5 network topology diagram performance optimization

HTML5 Canvas for text Rendering (fillText, strokeText) performance is not very good, such as setting font (font) and text rotation (rotation). If you draw a lot of text, some interactive operations will have a great impact manually, and the operation is not so smooth and the experience It will be extremely poor. This is not the result we want. If we further compare it with the drawing of pictures, you will find that the performance of drawing pictures and drawing text is not at the same level. Drawing pictures will be much better in terms of performance.

Let’s talk about HT for Web performance-related issues today. In HT, there are many places where text can be set, and it can be set on each node. Two labels and two note texts. If they are all turned on, drawing a node requires drawing 4 texts. If the performance consumption of drawing text is 3 times that of drawing pictures, and drawing 4 texts, it is like With 12 times more performance consumption and more nodes, it is conceivable that no engine can hold such performance consumption.

Since drawing. The performance consumption of text is unavoidable, so how can we improve the overall performance of the system? Another way of thinking is that drawing text will consume high performance, resulting in delays and freezes in the operation, so can I not draw text during operation? , save the performance consumed by text drawing and use it for other performance consumption. Can this solve the problem of operation delay and lag?

##We might as well try it, add several node, edge, group and other nodes in GraphView, and display text (including lines, as shown in the figure above) on each node. See Let’s see how the topology scales. It takes two or three seconds to scale every time. The performance is really bad. This kind of application is definitely unqualified. Let’s take a look. Look at the specific Demo, and then analyze the implementation of the specific code

##

var init = function() {
    window.matchMedia('screen and (min-resolution: 2dppx)').
        addListener(function() {
            ht.Default.setDevicePixelRatio();
        });    var g2d = new ht.graph.GraphView(),
        dm = g2d.dm();
    g2d.addToDOM();
    g2d.getLabel = function(data) {        
    if (data.s('label'))            
    return data.s('label');        
    if (data instanceof ht.Edge)            
    return 'from:' + data.getSourceAgent().toString() + 
                ' to:' + data.getTargetAgent().toString();        
                return data.toString();
    };

    createNodes(dm);    
    var autoLayout = new ht.layout.AutoLayout(g2d);
    autoLayout.setAnimate(true);
    autoLayout.layout('symmetric', function() {
        g2d.fitContent(true);
    });

    createFormPane(g2d, autoLayout);
};
The above code is the page initialization code, first listen to the value of media. Change to prevent the page from being unclear due to switching between different devicePixelRatio screens. The ht.Default.setDevicePixelRatio() method will

update

the variable storing devicePixelRatio in the HT system, and then refresh all the HT components on the page, so This ensures that the page will not be unclear.

Then comes the common network topology diagramGraphView component and adds it to the DOM. Overload the getLabel method of GraphView to set the text of the graphic element so that each Nodes have text.

Next call the createNodes method to create all nodes. After creating the code, create an AutoLayout to automatically layout all nodes. Auto layout saves developers the time of manual layout and improves efficiency. Greatly improved, after the layout is completed, the nodes in the GraphView can adapt to the screen so that all nodes are displayed on the current page.

Finally create a FormPane and place it in the upper right corner to store several control buttons and several ComboBox selections, allowing

GraphView to run in different layout modes At the same time, these functions can also be used to detect page performance and whether it is smooth during the layout process. The specific code can be viewed through the browser's Sources.

If the text is always displayed, the performance is still not good. As mentioned above, it is unqualified. So how can we optimize and improve performance qualitatively?

As mentioned at the beginning of the article, we can improve performance and make the page presentation smoother by not drawing text during the operation interaction process. So how can we achieve this so that text is not drawn during the operation interaction? Look at the code:

var state = {};
g2d.isLabelVisible = function(data) {    
return !state.zooming && !state.panning && !state.autoLayout;
};
g2d.onAutoLayoutEnded = function() {
    state.autoLayout = false;
};
g2d.onZoomEnded = function() {
    state.zooming = false;
};var timer = null;
g2d.mp(function(e) {    if (e.property === 'zoom') {
        state.zooming = true;        if (timer)
            clearTimeout(timer);
        timer = setTimeout(function() {
            timer = null;
            state.zooming = false;
            g2d.redraw();
        }, 100);
    }
});
g2d.mi(function(e) {    if (e.kind === 'beginPan')
        state.panning = true;    if (e.kind === 'endPan') {
        state.panning = false;
        g2d.redraw();
    }
});

First of all

GraphView provides the isLabelVisible method, allowing users to override whether to display custom text or not. The state variable is used to mark the current Operation status, zooming means that the current GraphView is zooming, panning means that the current GraphView is moving the entire scene, and autoLayout means that automatic layout operations are being performed.

The mp (addPropertyChangeListener) method of GraphView is to monitor the property changes of GraphView. When the zoom property changes are monitored, the zooming status is set to true. If the animation is not started during the zoom process, it will not The onZoomEnded callback is triggered, so you need to add a timer yourself, change the zooming state after a while, and redraw the GraphView.

The mi (addInteractorListener) method of GraphView is to monitor the user's operation actions on GraphView. When it listens to beginPan, it sets the panning status to true. When it listens to endPan, it sets the panning status to false, and redraw the GraphView.

Some operations in the FormPane will automatically layout the nodes in GraphView, so the autoLayout state will be set in the FormPane. Since there is a lot of code, I The code is posted here. Let's take a look at the effect of the GraphView operation after adding the above code:

The above picture is When scaling the GraphView, you can see that all the text has disappeared, and there will be no delays or lags in user operations. In this way, the performance problem of user operation interaction is solved.

The above is the detailed content of Detailed graphic explanation of HTML5 network topology diagram performance optimization. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
H5 and HTML5: Commonly Used Terms in Web DevelopmentH5 and HTML5: Commonly Used Terms in Web DevelopmentApr 13, 2025 am 12:01 AM

H5 and HTML5 refer to the same thing, namely HTML5. HTML5 is the fifth version of HTML, bringing new features such as semantic tags, multimedia support, canvas and graphics, offline storage and local storage, improving the expressiveness and interactivity of web pages.

What Does H5 Refer To? Exploring the ContextWhat Does H5 Refer To? Exploring the ContextApr 12, 2025 am 12:03 AM

H5referstoHTML5,apivotaltechnologyinwebdevelopment.1)HTML5introducesnewelementsandAPIsforrich,dynamicwebapplications.2)Itsupportsmultimediawithoutplugins,enhancinguserexperienceacrossdevices.3)SemanticelementsimprovecontentstructureandSEO.4)H5'srespo

H5: Tools, Frameworks, and Best PracticesH5: Tools, Frameworks, and Best PracticesApr 11, 2025 am 12:11 AM

The tools and frameworks that need to be mastered in H5 development include Vue.js, React and Webpack. 1.Vue.js is suitable for building user interfaces and supports component development. 2.React optimizes page rendering through virtual DOM, suitable for complex applications. 3.Webpack is used for module packaging and optimize resource loading.

The Legacy of HTML5: Understanding H5 in the PresentThe Legacy of HTML5: Understanding H5 in the PresentApr 10, 2025 am 09:28 AM

HTML5hassignificantlytransformedwebdevelopmentbyintroducingsemanticelements,enhancingmultimediasupport,andimprovingperformance.1)ItmadewebsitesmoreaccessibleandSEO-friendlywithsemanticelementslike,,and.2)HTML5introducednativeandtags,eliminatingthenee

H5 Code: Accessibility and Semantic HTMLH5 Code: Accessibility and Semantic HTMLApr 09, 2025 am 12:05 AM

H5 improves web page accessibility and SEO effects through semantic elements and ARIA attributes. 1. Use, etc. to organize the content structure and improve SEO. 2. ARIA attributes such as aria-label enhance accessibility, and assistive technology users can use web pages smoothly.

Is h5 same as HTML5?Is h5 same as HTML5?Apr 08, 2025 am 12:16 AM

"h5" and "HTML5" are the same in most cases, but they may have different meanings in certain specific scenarios. 1. "HTML5" is a W3C-defined standard that contains new tags and APIs. 2. "h5" is usually the abbreviation of HTML5, but in mobile development, it may refer to a framework based on HTML5. Understanding these differences helps to use these terms accurately in your project.

What is the function of H5?What is the function of H5?Apr 07, 2025 am 12:10 AM

H5, or HTML5, is the fifth version of HTML. It provides developers with a stronger tool set, making it easier to create complex web applications. The core functions of H5 include: 1) elements that allow drawing graphics and animations on web pages; 2) semantic tags such as, etc. to make the web page structure clear and conducive to SEO optimization; 3) new APIs such as GeolocationAPI support location-based services; 4) Cross-browser compatibility needs to be ensured through compatibility testing and Polyfill library.

How to do h5 linkHow to do h5 linkApr 06, 2025 pm 12:39 PM

How to create an H5 link? Determine the link target: Get the URL of the H5 page or application. Create HTML anchors: Use the <a> tag to create an anchor and specify the link target URL. Set link properties (optional): Set target, title, and onclick properties as needed. Add to webpage: Add HTML anchor code to the webpage where you want the link to appear.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use