


I have been doing front-end work for nearly two years, and I would like to summarize the experience I learned at work.
First of all, follow my thinking. The action of a user opening a web page can be understood as involving the following two major items: browser and server.
Let me talk about the server side first, as shown in the picture
As you can see in the picture above, the action of accessing the page (client) is HTTP on the server side. Since we are getting things, it’s easy to say, (please ask for a more appropriate metaphor)
一: The speed must be fast. All the front-end can do is use CDN services.
2: It is light enough. There are many things that the front end can do, such as compressing images, compressing css js files, html css and using them efficiently (avoiding table tr td and .div ul li span div{} and other similar codes. ), json data interaction (many times lighter than xml txt).
Three: Few times, such as synthesizing images, css, js file integration, caching (cookie, just cache important things, because the cache is stored on the client in the form of files, if it is too large, it will affect the browser's ability to read the file The efficiency)
Let's take a look at the relationship between the browser and the client. The order is from top to bottom, and js is the overlord in the browser (because the browser cannot do other operations at the same time when executing javascript. The browser can continue to render the page only after the javascript is executed.),So css is placed at the head and js is placed at the bottom.
2: Repaint (redraw) Reflow (reflow) Redraw is when the appearance of an element is changed, but the layout (width and height) is not changed, such as changing the outline color, background color, etc. Reflow means that changes in the DOM affect the width and height of elements
. The browser will recalculate the width and height of the element, which will affect the layout of the page. This is also the reason for the inefficiency of reflow, such as changing the window size and changing the text size. Content changes, etc. The solution is to avoid reflow as much as possible. If it is difficult to avoid
, try to position the elements as fixed and absolute.
Three: css efficiency id>class>tag>Great class. This doesn’t require much explanation.
4: DOM operations. JS and DOM can be regarded as two islands. Every time JS operates on a DOM element, it has to pass through a bridge. The more operations it takes, the more times it has to cross the bridge, and the efficiency is low, so try to reduce the number of times. Moreover, modifying DOM elements
will cause redrawing and rearrangement. Looping DOM elements is an even greater sin.
5: The other thing is cookies. Everyone knows it.
After a summary, I found that optimization is just like this, but I always feel that my metaphor is not very appropriate. If you have a good metaphor, you must tell me so that everyone can learn and understand together. My QQ is 523463345
🎜>
>

The article discusses the HTML <datalist> element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

The article discusses the <iframe> tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

The article discusses the HTML <progress> element, its purpose, styling, and differences from the <meter> element. The main focus is on using <progress> for task completion and <meter> for stati

The article discusses the HTML <meter> element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates <meter> from <progress> and ex

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

The article discusses the viewport meta tag, essential for responsive web design on mobile devices. It explains how proper use ensures optimal content scaling and user interaction, while misuse can lead to design and accessibility issues.

This article explains the HTML5 <time> element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit


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

WebStorm Mac version
Useful JavaScript development tools

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

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver Mac version
Visual web development tools

Notepad++7.3.1
Easy-to-use and free code editor
