search
HomeWeb Front-endHTML Tutorial[Project Summary] The overall architecture design of the front-end css of the e-commerce website (1)_html/css_WEB-ITnose

Recently I have been busy writing an outsourcing website. The main function of the website is art bidding and the sale of art derivatives. About 80% of the project has been completed. Now the front-end and back-end code volume has reached about 500,000 lines. I am mainly responsible for front-end design and front-end layout. Let’s put a design drawing of the website first. Because it involves Party A’s “commercial secrets”, it is mosaic:

 

 

This article is mainly My summary of this project is probably a summary of some front-end books or experiences I have read at this stage, so I won’t post so many design drawings. The design drawing of the entire project set the tone of the home page draft with the initial UI. Most of the remaining interfaces were made based on the home page draft. I will talk more about it when I have the opportunity. PS: However, the blog garden is now full of .net articles. In addition to js, ​​the front-end articles are those "copy and paste" source code articles. I hope to see more good front-end articles in the future.

There are already 3,40 single interfaces (not including the backend) of the entire website, and there are more than 10 css files accumulated (I will elaborate on this later, this is what I did in this project) The most failed part is also the reason why I write this blog).

 

 

I will talk about my understanding of each question one by one. If anything is not right, welcome to exchange:

1. What is css architecture? Why do architecture?

If you are building a small blog website or a small CMS, you may not need to consider the CSS architecture in many cases, because there are very few CSS files, and there are less than 10 interfaces in total, giving each It doesn’t take much work to write separate styles for the interface and seal a separate css file. However, if you switch to a large website with dozens or hundreds of interfaces, the CSS architecture is very necessary. Moreover, a good architecture can help the team develop together. It is impossible to say that there are dozens of interfaces, 3 front-ends, and more than a dozen per person. Okay, go ahead and write it. This kind of work is too inefficient and can easily lead to style conflicts. and styles were overwritten, it may be very fast to write. Everyone worked very hard to finish writing their own code. Then after the backend was integrated, it was found that the styles were all messed up. It took several days to change them, which was slower than writing.

Appropriate CSS structure can help developers reduce the amount of code and help the front-end development team collaborate better during the joint development process. At the same time, it can also optimize the overall structure of the front end. A reasonable CSS architecture can reduce the number of CSS files and the total size of CSS files, and reduce the access pressure on the server.

  It can also greatly improve the reuse of front-end code and reduce code maintenance costs. For the kind of Party A who wants to change the interface every hour, it would be crazy to not have a good CSS structure. For example, each of your pages has a title bar, and each page is a separate CSS. Then suddenly one day, Party A Shen Jingbing says, I want to change the style. At this time, you have only two options: 1. Hug 2. Silently turn on the computer and start modifying interface by interface. Seeing here, many comrades with development experience should know that extract this title section, write it in a unified css file, and reference it in each interface. If you want to change it in the end, just go to the general css file and change it. . This is the simplest modularization. However, there are still many issues that need to be paid attention to during the modularization process: 1. For example, three interfaces have title bars, but what should I do if the three interfaces have different requirements for the title bar font color? What should I do if the upper and lower margin requirements are different? 2. Suddenly there is an interface. It has a title bar, but there is an additional background image in the title bar. How to solve this? To make it more troublesome, there is an extra

tab in the title bar. How to lay out the extra tab? This problem of resolving differences between modules is indeed worthy of careful study.

The usual CSS architecture, or the CSS framework of the current website, includes functions such as overwriting and resetting the browser's default style, extracting and abstracting the internal modules of the website, agreeing on CSS code specifications, and conflict resolution. If the project references other mature frameworks, such as bootstrap and yui, how can we separate these frameworks from those written by ourselves, so that we can implement styles without conflict? Talk slowly later.

How to create a css structure or how to implement a simple css structure?

Answer: Write code!

 

2. Where to start the CSS architecture?

Before starting a project, you should not just start working on the design drawings when you see them. You should first think about how to write them. Just like what our teachers say to us most often, "If you can only write code, you are just a mediocre programmer. Those who can make a good architecture or arrange how the project is developed are high-end programmers. Mediocre programmers Programmers can only eat bananas, and high-end programmers can sometimes eat pineapples, apples, etc.” Just start writing. As you write, you will find that you are doing repetitive work many times, copying and pasting, or rewriting one style after another for an interface module, or you will find that "fuck... Conflict, the style is messed up." Or, as you write, you find that what you wrote is wrong and want to go back and correct it, and then start to modify the files one by one... This kind of clumsy and unstructured writing of CSS is just physical work, and it takes a long time. A project I wrote before was like this. I slowly changed the 20 or so interfaces. I changed it for two whole days and I was going crazy...

Before starting a project, at the very least, you should think clearly about the general outline. How many css files are there, which css files need to be written out in a fixed version first, which css codes may be reused in large quantities, and which css files may undergo large-scale changes. Then start writing the first version according to the detailed requirements of these css.

For example, in the screenshot I posted above, the most intuitive header bar: is the same in every interface. Of course, we can use distributed view layout in the backend to achieve this, but in the early stage of interface front-end implementation, should we also extract this piece of html, css, and js, so that when the backend is finally integrated? It can also be faster, and if it happens to be Christmas, the customer says to change the background color above to blue, so you can just go to header.css and change the style, without having to do "manual work" "Yes."

Therefore, the first way to design the CSS front-end architecture is to divide it according to regions.

Based on the regional positioning of elements or modules within the page, the website can be divided into many areas: header, footer, sidebar, slogan, etc. Individual positioning of these areas can effectively achieve the division of distributed views. Each area has been extracted, and when creating a new interface, we only need to work together in it. If I remember correctly, this is what yui did.

I did not extract the css of this auction website separately because I think it is a bit redundant to separate it into a header.css and footer.css file. The number of css files is increasing, and each file The number of lines of code inside is very small. This depends on the specific code. If a footer style contains dozens of lines, then separate it into a file. So in the general css file: layout.css, I actually write it according to the area:. When I want to change the bottom navigation style, I just go to layout.css, search down, and change it.

 

 However, after we divided the interface, we found that there are still a lot of codes that appear repeatedly, such as login boxes, tables, text boxes, etc., so we have the third Two ways of division: Divide according to function.

The division by function is to look at the function of the element in the interface, and then extract elements and modules with the same function according to the specific function: font, color, button, form, etc. This should be now The model adopted by many mature frameworks, for example, my big bootstrap does this. Below is a screenshot of the less folder of bootstrap2.3. Obviously, they are all functional modules. In the end, what we directly apply is all integrated and compressed. min.css actually still has this structure in it:

 

  It’s quite cool to divide it according to functions, because you can add a unified prefix to each function division. When there are code prompts Writing code in the compiler is extremely fast. If it were divided by area, sometimes it would be a little painful. "Oh, what is the css name of the footer? Oh, what is the class name of the sidebar that Xiao Wang wrote?"

In the code of this project, I actually used a mixed mode of the first method and the second method. As you can see from my last screenshot of the css file, I not only combined the repeated The code of the area module is abstracted, and functional modules such as sidebars and masks are also abstracted and organized to maximize the reusability of my code.

I used to think that the structure of my project was pretty good, but then the more I wrote, the more I got stuck, because most of the time I was doing useless work. Silly mistakes I made:

1. Module abstraction has limitations. For example, if the form is missing a special element, the originally written module will no longer be usable, and you will have to write it all over again.

2. Module abstraction is incomplete. When I thought I had almost done the module abstraction, I started writing with all my strength. As I wrote, I found that some modules had been forgotten, and many modules needed to be written by hand over and over again.

3. The css class name is not standardized. In the final analysis, the modules are not divided well. Until now, I have run out of words to name this website. It has many interfaces: add to shopping cart, add to favorites list, view shopping cart, confirm payment, fill in confirmation order, pay at a fixed price... I don’t have a good English foundation. What a nightmare... So I can only translate the Chinese name, and then use the camel case naming method: AddCart. In fact, there are many naming methods. The biggest advantage of the camel case naming method is that it can be named very intuitively without considering other things. However, the camel case naming method is more troublesome when naming subclasses, one long word after another...another One naming method is the underline method. In order to avoid trouble, use the underscore directly instead of the dash add_cart. This naming method is particularly good for naming subclasses. I will talk about this in the next few chapters.

 -------------The following---------is---------this article------- Core-----Now---

The following is the [core] of this article, and it is also my sad reflection T^T The recent project has been blocked and half-written, so I read some A book on front-end code specifications and a summary of website front-end development, and then I discovered a new structural method. After reading it, I felt really bad. Recommend this book "Writing High-Quality Code-Web Front-End Development Cultivation Method"

Another recommended CSS architecture method is: dividing according to interface functions: here the entire front-end of the website is abstracted into one Software or a project, what we have to consider at this time is what is the bottom layer of the project and what is the presentation layer of the project. Similar to the idea of ​​MVC that everyone often talks about, the front-end architecture is also divided like MVC, and all css can be Files are summarized into three categories:

1.base class 2.common class 3.page class

These three categories are not models that work side by side like regional architecture and functional architecture, but are based on The base class is the bottom layer, affecting layer by layer and cascading effects. I roughly drew a function diagram:

  Indeed, it is like this pyramid structure. Let’s introduce the functions of each class in detail below.

 

 [1.base class]

    As the name suggests, base, it is the most basic part of the entire CSS architecture. It is responsible for providing browser default style reset and basic function implementation. When it comes to basic function implementation in base, it mainly refers to the atomic level functional class implementation that involves a very small scope and a high degree of abstraction. For example, our most common .f12{font-size:12px;}, .mt30{margin-top:30px;}, each atomic class is only responsible for implementing one function, and it definitely does not involve the specific page UI, but is just for the above Several layers provide atomic functions, and the implementation of a specific module is achieved by combining these atomic classes. Of course, the base class is also responsible for the reset of the browser's default style. I think yui implements this very reliably. Nowadays, the on many websites is not bold, so this needs to be written in the reset section in advance.

The base class is the foundation of the entire CSS architecture. All interfaces will reference the entire file, which imposes requirements on this file: 1. The file size cannot be too large. 2. The file must be highly reliable and cannot have multiple versions. 3. After writing, try to reduce the number of maintenance times or try to avoid maintenance. Moreover, the base classes of different websites can be shared, because the base class does not involve any specific UI style and is highly portable.

What are the specific base class files? I will talk about this next time. I don’t have time today.

 [2.common class]

 Common class, which is the css file of the basic module implemented using css basic classes. We have put the text, margins, colors and other atoms in the entire interface The project has been extracted, and now we need to customize the module for the current website.

The "Uniformity Principle" in the design principles requires that the same website must maintain a consistent style. You cannot have a flat homepage. When you enter the list page, you will have a web 2.0 style with high lights, high shadows and cool flash. Page. Therefore, the search box, text box, button, and list within the same website are mostly of the same style, so this gives us an opportunity to extract these recurring modules into a common class, similar to MVC The model inside is also similar to the specific function files of the architectural function division we described above. In order to ensure reusability and flexible use as much as possible, we need to completely encapsulate these modules.

By the way, what should I do when the module needs to be customized?

I thought of two methods. One is to use less and other languages ​​​​to reserve style interfaces for modules, directly modify the configuration file, and then dynamically output the css file. 2. Minimize the UI attributes of the module, such as bgcolor or border, which can be left blank, and be combined with atomic classes according to your own needs during actual use. However, this method may have requirements for atomic classes and have an impact on the base file, so I made up a word myself: molecular class. Obviously, it provides large atomic class customization for modules, and customizes exclusive items for each module. Style classes, as well as the common layer, only need to be combined with each other when you need to customize the module style. I will write something to demonstrate in the next article. ​

  [3.page class]

                    One css per page, but that’s about it. The page class is responsible for providing page-level styles. Page css may cause some troubling problems: 1. There are too many pages, so there are too many single files of page css, and each file is an http request. Can the server bear it? 2. In order to reduce the number of page css, they are merged into one page.css, but what about naming? For example, .part, .one, .main, .theme... What to do with these frequent class name merge conflicts?

The second problem can be solved by naming scope restriction.

As for the first question, you can merge single css files, and then you can look at the answer to the second question.

  

           

                        There is a lot of code in it. If applied to distributed view, a whole page is actually composed of several small interfaces. So how to avoid conflicts? How to avoid style override? More on that later.

 

  _(:з ∠)_I am exhausted from coding so many words, so I will write this first today. See you in the next article~~ [Please communicate with me, please bring me some inferences, please don’t complain...]

In the next article, we will talk about the base css file in detail, and my own reconstruction of the project css.

                      

           

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
i站是什么i站是什么Sep 26, 2022 pm 04:32 PM

i站是名叫“iwara”的网站,又称“爱弹幕”,是一家弹幕视频分享网站,主要分享动漫资讯、番剧、漫画小说、游戏等资源,可以说是一家二次元文化圈网站。i站里的漫画资源非常丰富,且基本都是免费的,很多网上热议漫画、最新的漫画包括日韩漫画都可以在i站观看。

a站和b站的区别是什么a站和b站的区别是什么Sep 16, 2022 am 11:41 AM

区别:1、a站全称叫“acfun”,b站全称叫“bilibili弹幕网”。2、a站的内容比较综合,主要是以视频为载体,逐步发展成基于原作进行二次创作的一种形式;而B站更偏向于acg,更有针对性的内容带来的是数量大但是范围更狭窄的受众群体。3、A站用户群体年龄稍稍偏大,热情有余行动力不足;B站用户普遍年龄偏小,戾气较重但集群性很强。

解决Python网站访问速度问题,使用索引、缓存等数据库优化方法。解决Python网站访问速度问题,使用索引、缓存等数据库优化方法。Aug 05, 2023 am 11:24 AM

解决Python网站访问速度问题,使用索引、缓存等数据库优化方法在开发和维护Python网站的过程中,经常会遇到网站访问速度慢的问题。为了提高网站的响应速度,我们可以使用一些数据库优化方法,如索引和缓存。本文将介绍如何使用这些方法来解决Python网站访问速度问题,并提供相应的代码示例供参考。一、使用索引优化数据库查询索引是数据库中数据的快速查找结构,可以大

如何从iPhone的Safari中删除经常访问的网站如何从iPhone的Safari中删除经常访问的网站Jul 10, 2023 pm 04:41 PM

默认情况下,大多数iPhone用户在iPhone上使用Safari浏览器。他们在Safari浏览器上浏览和访问不同类型的网站。一些iPhone用户报告说,他们厌倦了在iPhone上启动Safari浏览器后在初始屏幕上看到经常访问的网站。为了更改初始屏幕的外观,您应该对其进行编辑。如果您希望从Safari浏览器中删除经常访问的网站,我们在这里提供一些简单的步骤,解释如何轻松做到这一点。如何从iPhone的Safari中删除经常访问的网站步骤1:您应该首先在iPhone上启动Safari浏览器。第2

itch.io是什么网站itch.io是什么网站Sep 07, 2022 am 11:47 AM

“itch.io”是一个专注于独立游戏内容的数字商店网站;该网站是由程序员出身并且尝试过游戏开发的“Leaf Corcoran”创立,开发者可以在这里上传自己的游戏售卖,玩家可以在这里找到自己喜欢的产品。

php的网站有哪些php的网站有哪些Jul 27, 2023 am 10:54 AM

php的网站:1、Facebook,世界上最大的社交媒体平台之一;2、WordPress,开源的内容管理系统,用于快速创建和管理各种类型的网站;3、Magento,功能强大的电子商务平台,用于创建和管理在线商店;4、Joomla,流行的开源内容管理系统,用于构建各种类型的网站;5、Wikipedia,免费的在线百科全书,提供各种主题的知识和信息;6、Digg,社交新闻网站等等。

如何在 Edge 中阻止对网站的访问如何在 Edge 中阻止对网站的访问Jul 12, 2023 am 08:17 AM

有时,出于多种原因,我们希望在MicrosoftEdge上阻止某些网站,无论是出于家长控制,时间管理,内容过滤,甚至是安全问题。一个常见的动机是提高生产力并保持专注。通过阻止分散注意力的网站,人们可以创造一个有利于工作或学习的环境,最大限度地减少潜在的干扰。最后,内容过滤对于维护安全和尊重的在线环境非常重要。阻止包含露骨、冒犯性或令人反感内容的网站在教育或专业环境中尤其重要,在这些环境中,维护适当的标准和价值观至关重要。如果您可以与这种情况相关,那么本文适合您。下面介绍了如何在Edge中阻止对网

使用域名访问网站是啥意思使用域名访问网站是啥意思Mar 10, 2023 pm 02:18 PM

使用域名访问网站是指使用域名来进入一个网站,就是在浏览器里直接输入网站的网址来访问网站。网站都是存放在服务器上的,服务器有一个地址,也就是网站的ip地址,是一串数字,但是数字很难记,域名和DNS应用而生,DNS就是将网址和网站的ip地址对应起来;这样用户可以输入网址(域名),就相当于输入了网站的ip地址,就可以访问网站了。

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

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)