Home  >  Article  >  Web Front-end  >  What is layui? what's the effect?

What is layui? what's the effect?

王林
王林forward
2020-08-28 16:17:5011128browse

What is layui? what's the effect?

First let’s talk about what layui is

(Recommended tutorial: layui)

layui is a software that uses its own The front-end UI framework written in module specifications follows the writing and organizational form of native HTML/CSS/JS. The threshold is extremely low and can be used out of the box. It is minimalist on the outside but full on the inside. It is light in size and rich in components. Every detail from the core code to the API has been carefully crafted, making it very suitable for rapid interface development. The first version of layui was released in the autumn of 2016. It is different from those UI frameworks based on the bottom layer of MVVM, but it does not go against the grain, but believes in returning to nature. To be precise, it is more tailored for server-side programmers. Developers do not need to get involved in the complex configuration of various front-end tools. They only need to face the browser itself, making development very convenient.

Why use layui?

layui is more for back-end developers, so in terms of organizational form, it resolutely adopts the AMD-like module management method that uses the browser as the host a few years ago, but it is not limited to those of CommonJS. Think outside the box, it has its own mode, is more lightweight and simple. Layui is defined as "classic modularity". It does not deliberately emphasize the concept of "module" itself, but intentionally avoids the mainstream solutions of the current JS community and tries to interpret efficiency in the simplest way possible! Its so-called classic lies in its obsession with returning to nature. It organizes modules in a way that is generally recognized by current browsers! layui believes that this lightweight organization method can still fill many scenarios beyond WebPack. Therefore, it insists on using classic modularity, which allows people to avoid the complex configuration of tools and return to the original HTML/CSS/JavaScript itself!

Compatibility and scenario-oriented

layui is compatible with all browsers currently used by humans (except IE6/7), and can be used as a quick development solution for PC-side backend systems and front-end interfaces.

Main modules

layui provides a wealth of built-in modules, all of which can be loaded on demand in a modular manner, including: layer, layDate, layPage, laytpl, table, form, upload , element, tree, layeditor, rate, carousel, flow, util, code, etc.

Directory structure

├─css //css directory
│ │─modules //Module css directory (generally if the module is relatively large, it will be extracted separately, such as the following three )
│ │ ├─laydate
│ │ ├─layer
│ │ └─layim
│ └─layui.css //Core style file
├─font //Font icon directory
├─images //Image resource directory (currently only GIF expressions used by layim and editor)
│─lay //Module core directory
│ └─modules //Each module component
│ ─layui.js //Basic core library
└─layui.all.js //A merged file containing layui.js and all modules

The above is the detailed content of What is layui? what's the effect?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:csdn.net. If there is any infringement, please contact admin@php.cn delete