current position:Home>Layui built-in module (element common element operation)
Layui built-in module (element common element operation)
2022-04-29 12:48:33【Yang Zhizhong】
What the hell is a common element operation , The official explanation is simply that there are some dynamic effects in the page , Of course, it's not what we call dynamic web pages , These dynamic effects , It is through us to load element After the module , Some dynamic effects added to these elements of the page by default , such as layui The effect of the small slider at the bottom of the navigation at the top of the document , Look at the picture below :
Of course, it's not just these , There are others, such as tab Handoff 、 Unfolding and merging of folding panels 、 Expansion and merging of secondary navigation, etc .
The default effect, of course, goes without saying , As long as we can achieve element Loading of elements , That is, things that can be done in one step , The point is to see element Some common methods and simple use in , The methods are summarized as follows :
The following is a simple use of listening Events , The renderings are as follows ( Be careful console The output of the console changes ):
<!DOCTYPE html>
<meta charset="utf-8">
<html>
<head>
<script type="application/javascript" src="jquery-3.2.1.js"></script>
<link rel="stylesheet" href="layui/css/layui.css">
<script type="application/javascript" src="layui/lay/dest/layui.all.js"></script>
</head>
<body>
<div class="layui-main" style="margin-bottom: 30px;margin-top: 20px">
<ul class="layui-nav" lay-filter="bigData">
<li class="layui-nav-item"><a href=""> Latest events </a></li>
<li class="layui-nav-item layui-this"><a href=""> product </a></li>
<li class="layui-nav-item" href=""> big data </a></li>
<li class="layui-nav-item">
<a href="javascript:;"> Solution </a>
<dl class="layui-nav-child"> <!-- Two level menu -->
<dd><a href=""> Mobile module </a></dd>
<dd><a href=""> Background template </a></dd>
<dd><a href=""> Electronic business platform </a></dd>
</dl>
</li>
<li class="layui-nav-item"><a href=""> Community </a></li>
</ul>
</div>
<div class="layui-main" style="margin-bottom: 30px;">
<div class="layui-tab" lay-filter="test">
<ul class="layui-tab-title">
<li class="layui-this"> Website setup </li>
<li> User management </li>
<li> Permission assignment </li>
<li> Commodity management </li>
<li> Order management </li>
</ul>
<div class="layui-tab-content" style=" height: 120px;width: 100%;">
<div class="layui-tab-item"> Website setup </div>
<div class="layui-tab-item"> User management </div>
<div class="layui-tab-item"> Permission assignment </div>
<div class="layui-tab-item"> Commodity management </div>
<div class="layui-tab-item"> Order management </div>
</div>
</div>
</div>
<div class="layui-main" style="margin-bottom: 30px;margin-top: 20px">
<div class="layui-collapse" lay-filter="collapseFilter" lay-accordion>
<div class="layui-colla-item">
<h2 class="layui-colla-title"> Du Fu </h2>
<div class="layui-colla-content layui-show">
The core of Du Fu's thought is the benevolent government thought of Confucianism , He has “ To you, Yao and shun , Make the custom simple again ” The grand ambition of . Although Du Fu was not famous in his lifetime , But then it became famous ,
It has a profound influence on both Chinese literature and Japanese literature . Du Fu had an appointment together 1500 The poem has been preserved , Most of them focus on 《 Du Gong Bu Ji 》.
</div>
</div>
<div class="layui-colla-item">
<h2 class="layui-colla-title"> Li qingzhao </h2>
<div class="layui-colla-content">
Li Qingzhao was born in a scholarly family , Early life was abundant , His father Li Gefei is rich in books , When she was a child, she laid a literary foundation in a good family environment . After getting married, Zhao Mingcheng and his husband worked together to collect and sort out calligraphy and painting gold and stones .
When Jin Bing entered the Central Plains , Live in the South , In a lonely situation . The words written , Write more about his leisurely life in the early stage , Later, he lamented his life experience , Sentimental mood . Good at line drawing in form , Create your own way , The language is beautiful .
</div>
</div>
<div class="layui-colla-item">
<h2 class="layui-colla-title"> Du Fu </h2>
<div class="layui-colla-content">
Lu Xun spent his whole life in literary creation 、 Literary criticism 、 Thought research 、 The study of literary history 、 translate 、 The introduction of art theory 、 The introduction of basic science and the collation and research of ancient books have made great contributions .
He had a great influence on the development of Chinese social ideology and culture after the May 4th movement , Famous in the world of literature , Especially in Korea 、 Japanese ideological and cultural field has an extremely important position and influence , Known as the “ Writers who occupy the largest territory on the East Asian cultural map in the 20th century ”.
</div>
</div>
</div>
</div>
<div class="layui-main" style="margin-bottom: 30px;margin-top: 20px">
<div class="layui-progress layui-progress-big" lay-filter="demo" lay-showPercent="true">
<div class="layui-progress-bar layui-bg-blue" lay-percent="20%"></div>
</div>
<div class="site-demo-button" style="margin-top: 20px; margin-bottom: 0;">
<button class="layui-btn site-demo-active" data-type="setPercent"> Set up 50%</button>
<!-- <button class="layui-btn site-demo-active" data-type="loading"> simulation loading</button>-->
</div>
</div>
<script>
layui.use('element',function () {
// Instantiation element
var element = layui.element();
// Initialize dynamic elements , Some dynamically generated elements are initialized if they are not set , There will be no default dynamic effects
element.init();
// Click listen on the navigation bar
element.on('nav(bigData)',function (elem) {
console.log(elem);
});
//tab Switch monitoring
element.on('tab(test)',function (data) {
console.log(data);
});
// The accordion folding panel opens and closes
element.on('collapse(collapseFilter)',function (data) {
console.log(data.show);
console.log(data.title);
console.log(data.content)
});
// Triggered events
var active = {
setPercent: function () {
// Set up 50% speed of progress
element.progress('demo', '50%')
}
}
// Click event monitoring
$('.site-demo-active').on('click', function(){
var othis = $(this);
var type = $(this).data('type');
active[type] ? active[type].call(this, othis) : '';
});
})
</script>
</body>
</html>
copyright notice
author[Yang Zhizhong],Please bring the original link to reprint, thank you.
https://en.qdmana.com/2022/119/202204291120188914.html
The sidebar is recommended
- Construction and development of automatic test platform based on HTTP runner
- Application of RT thread - use RT thread on stm32l051 (v. conclusion of wireless temperature and humidity sensor)
- Expose Dubbo to HTTP service
- Put the front end into the spring cloud project
- Front end learning day 4 - CSS
- Vue URL jump page with parameters
- JavaScript Chapter 13 traversal of arrays and implicit parameters of function methods
- These CSS efficiency improvement skills, you need to know!
- Beijing has opened the pilot of unmanned operation of passenger cars, and the driverless air outlet has arrived
- Test theory series - Test Case elements and design methods Part II
guess what you like
How to make the peak value of measured output voltage not less than 2V
Hexo quickly set up its own blog
Gee synthetic cloudless landsat-8 and sentry-2 data
Prototype object creation method case JavaScript specific implementation steps
YAF CLI and HTTP access modes
Simple HTML + CSS animation web page production DW simple animation web page production
The correct way for web programmers to make a pink girl series happy birthday blessing web page (HTML + CSS + JS)
HTML + CSS + JS to make simple animation web pages
HTML gourmet web page production DW static web page production div + CSS gourmet web page implementation and production
Programmer 520 Tanabata Valentine's Day confession code HTML + JS + CSS petal photo album web page template programmer confession necessary
Random recommended
- Element notify notification prompt text wrap
- Belkin: it's too early to talk about real wireless space charging
- JavaScript ES6 set (set) type* ω *
- Understand JavaScript function execution process and scope chain
- Java project: nursing home management system (java + springboot + thymeleaf + HTML + JS + MySQL)
- Java project: drug management system (java + springboot + HTML + layui + bootstrap + seals + MySQL)
- An error is reported when installing hexo during hexo deployment. What is the reason and how to solve it (tag git | keyword path)
- [front end basics] Linux command: Project Automation deployment
- Less than 100 or win Porsche, Maserati "special supply" 3.0T technical analysis
- Introduction to basic methods of math built-in objects in JavaScript
- CSS matches the nth element of the parent element
- What is the commercialization process of unmanned robotaxi after China allows driverless steering wheel?
- A lot of trouble, cook also worried: a quarter less than $8 billion
- Ajax realizes no refresh paging (no refresh paging shopping cart source code)
- [flutter topic] 101 what is flutter elements Yyds dry goods inventory
- What is the commercialization process of unmanned robotaxi after China allows driverless steering wheel?
- A lot of trouble, cook also worried: a quarter less than $8 billion
- Element acquisition of data structure c language sequence stack
- Set video label based on Vue
- CSS realizes div width adaptation, and the proportion of height and width is fixed
- How to create JavaScript custom events
- Is there any recommendation for wireless signal and wired signal power amplification circuit?
- Introduction to basic methods of math built-in objects in JavaScript
- 1000km pure electric endurance is meaningless? Then why does the car factory still try its best to extend the endurance?
- [let's implement a simple vite!] Chapter 4 - compiling single file components
- 3-11xss htmlspecialchars bypass demo
- How to conduct architecture design 𞓜 deeply reveal Alibaba cloud serverless kubernetes (2)
- Heapdump performance community special series 7: front door opener of large factory -- Application Practice of fluent
- 1、 HTML base tag
- Don't leave the crane unless necessary! A case of novel coronavirus nucleic acid positive was found in Heshan, Guangdong
- [Architect (Part 20)] self defined template of scaffold and summary of phase I
- How does JavaScript understand this algorithm
- [live review] openharmony knowledge empowerment lesson 2, phase 5 - becoming a community talent
- Understand the basic history and knowledge of HTTP
- Influence of lazy loading of Web front-end training on Web Performance
- Guangxi 2021 Guangxi landscape - blessing Lake Changshou Island
- Responsive gulp Chinese network of web front end
- Twaver-html5 basic learning (26) background
- CSS learning notes [3] floating, not separated from document flow, inheritance and stacking
- Webengine loading local html is invalid, and html is the dynamic address generated by JS, which can be solved