Use of Bootstrap button
Any with class BTN elements inherit the default appearance of rounded gray buttons. However, Bootstrap provides some options to define the button style, as shown in the following table:
The following styles can be used on < a >, < button >, or < input > elements:
. btn: add basic style for button. BTN default: default / stan ...
Added by legsman on Sun, 16 Jan 2022 11:06:32 +0200
Agile way of web development, list tags of HTML common tags
Production consumer queue is used for multi node distributed data structure, production and consumption data. The producer creates a data object and puts it in the queue; The consumer takes a data object from the queue and processes it. In ZooKeeper, queues can be implemented by creating multiple child nodes under a container node; When creatin ...
Added by wolfan on Sun, 16 Jan 2022 10:53:14 +0200
web front-end development online course, JavaScript variables and literals
Intersection selectorUnion selectorDescendant Selectors Child Selector Adjacent Sibling Selectors attribute selectors
Intersection selector
The intersection selector consists of two selectors directly connected. The first selector must be an element selector, and the second selector must be a class selector or ID selector. The two selectors ...
Added by phpDVWeaver on Sun, 16 Jan 2022 09:26:27 +0200
JavaScript from getting started to mastering
JavaScript from getting started to mastering
On the charm of JavaScript
What is javscript
Principles of web effects
JavaScript is modifying styles (documents) Process of writing JS
Layout: HTML + CSSAttribute: determines the attribute to modifyEvent: determine what the user does (product design)Write JS: in the event, use js to modify ...
Added by lettie_dude on Sun, 16 Jan 2022 06:37:08 +0200
Learning notes - front end - JS Foundation
catalogue
Basics:
Variable:
data type
operator
Process control
loop
array
function
Scope
JS pre parsing
object
JS built-in object
Math
Date
Array object
String object
Data type memory allocation
Basics:
It is divided into ECMAScript (standardized programming language), DOM (document object model) and BOM (browser object mode ...
Added by alienmojo on Sun, 16 Jan 2022 04:15:47 +0200
Java learning day36_CSS
1 CSS
Web page -- > people HTML -- > skeleton CSS -- > skin and flesh
CSS refers to cascading style sheets (cascading style sheets), which are mainly used to set the text content (font, size, alignment, etc.) in HTML pages, the appearance of pictures (width and height, border style, margin, etc.) and the layout of layout, etc. CSS is ...
Added by The1PatO on Sun, 16 Jan 2022 02:36:16 +0200
The agile way of web development, html offline caching
Dubbo is a framework for remote invocation. For a service provider, it exposes an interface for external consumers to invoke, Do you need any special processing for whether the provider can call this interface?
This article will share Dubbo's implementation mechanism of local calls and how to turn on and off local calls.
The injvm supports lo ...
Added by Decipher on Sun, 16 Jan 2022 00:43:06 +0200
web development gadget, zero foundation, how to change to front-end development engineer
preface
How to verify parameters? Lu Zhu's projects a long time ago were "if else" one by one on the front-end page. Later, he used a series of front-end verification frameworks, such as "layui" and "iview". Several style attributes can be easily done. It's really beautiful.
Back end validation
So here comes the ...
Added by DarkPrince2005 on Sat, 15 Jan 2022 23:41:13 +0200
Notes - JS modularization
historical background
JS itself simple page design: page animation + form submission There is no modular or namespace concept With the increasing complexity of front-end pages, the previous methods can not meet the requirements Therefore, JS has an increasing demand for modularity
development history
Infancy: no modularization
Pages nee ...
Added by nsr500rossi on Sat, 15 Jan 2022 22:27:35 +0200
web front-end development training program, HTML comment tag
Mind map
closure
Before understanding closures, let's learn about the memory release of the parent scope and stack.
Concept of parent scope
Where is the parent scope of a function created and who is the parent scope
var a = 10
function foo(){
console.log(a)
}
function sum() {
var a = 20
foo()
}
sum()
/* output
10
/ ...
Added by kasitzboym on Sat, 15 Jan 2022 22:10:56 +0200