Let's first talk about the value of web front-end engineers. Currently, web product interactions are becoming more and more complex. User experience and website front-end performance optimization all have to rely on web front-end engineers. Web front-end engineers are a combination of design and development. Among developers, web front-end engineers are the most directly product- and user-oriented designers. The results of a development team must be presented by web front-end engineers, because users don't care how powerful the background processing is. Among designers, web front-end engineers are designers who directly face developers and convey their design concepts to developers in a computer language. Web front-end engineers are very critical in the entire team. In my opinion, a qualified web front-end engineer must master HTML, CSS and JavaScript. It's not enough to know just one or two of them, you have to be familiar with all three languages. It doesn't mean you have to be proficient in all three languages, but you should at least be able to use them to complete most tasks without having to frequently seek help from others. Here are the basic knowledge and skills that web front-end engineers should master in my opinion: 1 Basic structure of a web page (HTML + CSS) HTML is a markup language, not a programming language. The most basic tags are <html> and <body>. CSS is used to define how to display HTML elements. It is easy to get started with HTML+CSS, but many people do not go deep enough. Here are a few examples: What is the <meta> tag used for? What is the difference between margin-left and left, and in what situations should they be used? Here is another DIV+CSS layout problem: three horizontally aligned DIVs are placed inside a DIV of uncertain width. The width of the left and right DIVs is fixed at 150px, and the middle DIV fills the remaining width. If you don’t know these problems yet and cannot solve the layout problem within a few minutes, it means that you don’t have a deep enough understanding of HTML+CSS. 2 How does the browser display the web page? Browsers with different kernels render web pages differently. Currently, browsers all have client debugging tools. The following figure shows the loading details of a Google homepage in IE9: When optimizing web performance, you need to have a better understanding of browser rendering and details. Here is a more useful piece of knowledge: the current upper limit of parallel loading of browsers is 6, and the older versions of browsers may be different. 3 The life cycle of a web page The life cycle of a page may vary in different web frameworks, but is generally the same: the client sends a GET request, the server returns the corresponding page, the client completes the operation and data, and then POSTs it to the server. You must be aware of the details of data transmission (between the front-end and the back-end, and between pages). 4 DHTML DOM BOM Javascript AJAX This is the most important part of Web front-end development, and most of the time we are dealing with them. Here are a few points to note: javascript is single-threaded programming, and the so-called javascript asynchronous programming is nothing more than planning to execute corresponding events at a certain time in the future; understand the DOM event mechanism in detail; client storage (localStorage and sessionStorage were added in HTML5); javascript is not as rigorous as server-side languages, and debugging is not very convenient, so you must develop rigorous javascript editing habits from the beginning; javascript is very powerful and flexible, don't imagine becoming proficient in it (let alone mastering it) in a short period of time, and writing some frameworks and class libraries. In the initial stage, you should use a familiar and mature framework (such as jquery) as an introduction; you must be proficient in using client-side debugging tools. 6. Experience in server-side language development, PS image cutting technology Web front-end development is between design and development, so you need to know a little about both ends. The editing languages are similar. Having written server languages before is very helpful for learning JavaScript. To convert images into static HTML pages, PS cutting technology is indispensable. 5 Browser Compatibility Due to historical reasons, browser compatibility has always been a torment for web front-end engineers. Although there is a W3 organization and some specifications have been formulated, and although browser manufacturers are working hard to improve and approach their specifications, in the real network environment, browsers of various kernels and versions have their place. Solving browser compatibility requires experience accumulation, and fortunately, there is a lot of information on this topic online. http://www.w3help.org/zh-cn/This is a good reference website. 6. Quick learning ability and willingness to learn actively The web front-end is developing very fast. To work in this industry, you must have the ability to learn quickly and the willingness to learn actively so that you can adapt to the requirements of web products. There is no absolute right or wrong in the field of web front-end. There are many ways to solve a problem, but we have to find a more suitable method. Finding a more suitable method requires experience accumulation. In short, it is easy to get started with web front-end, but it is difficult to become proficient, and it requires more active willingness to learn. 7. Good communication skills An excellent front-end engineer needs to have good communication skills, because your work is closely related to the work of many people, such as project managers, designers, end users, and development engineers. Front-end engineers are at the intersection of these types of people. You have to take care of the requirements of these roles, balance the needs of these four types of people, and come up with a more appropriate plan. This shows that communication skills require higher standards for front-end engineers. |
<<: Example code for converting html table data to Json format
>>: Detailed explanation of the causes and solutions of conflicts between filters and fixed
This article shares with you a special effect mes...
When it comes to databases, one of the most frequ...
Recorded the installation and use tutorial of MyS...
Ubuntu 18.04 installs mysql 5.7 for your referenc...
This article example shares the specific code of ...
1. float+overflow:hidden This method mainly trigg...
Table of contents 1. Use in components 2. Option ...
The principle is to call the window.print() metho...
Index definition: It is a separate database struc...
Table of contents 1. useState hook 2. useRef hook...
Record the installation and configuration method ...
selinux ( Security-Enhanced Linux) is a Linux ker...
:is dynamic component Use v-bind:is="compone...
hash mode (default) Working principle: Monitor th...
1. Make a repo file Refer to the official install...