Vue study day 3
filter
Used in interpolation expressions and v-bind attribute binding instructions.
<p>{{ msg | msgFormate }}</p>
<p :id="msg | msgFormate"></p>
‘|’ -- Pipe character, used to split characters and filters
Filters must be declared before use.The filter declared in the vue object is pri ...
Posted by adamlacombe on Tue, 14 Sep 2021 18:56:50 -0700
HTML5 learning notes
Learning and using HTML5 language (I)
1, Basic introduction
1. What does HTML do
HTML: Hyper Text Markup Language for creating web pages HTML language is the basis of the Web. It can be said that the Internet is based on HTML. HTML5 is a new generation of HTML standard, which is already supported by most browsers**
2. Basic structure of ...
Posted by djs1 on Sat, 11 Sep 2021 23:37:57 -0700
Graphical development of 032-Three.js lighting - PointLight point source, SpotLight spotlight source, SpotLight shading, Hemisphere Light outdoor light source
Graphical Development (V) Lighting of 032-Three.js - PointLight point source, SpotLight spotlight source, SpotLight shading, Hemisphere Light outdoor light source
PointLight Point Light Source
A point light source emits light from a point to all directions. A simple example is a bare bulb. It's easy to implement one of the most common point l ...
Posted by stevepatd on Fri, 10 Sep 2021 22:50:03 -0700
Implementation of servlet, relocation, forwarding, and simple login and registration interface in Java
1.Servlet annotation and configuration file writing
1.1 writing method of configuration file [if Servlet version is low]
1. You need to write the configuration in the web.xml file
Find the resource web.xml
First, create a test class to inherit HttpServlet and override doGet and doPost methods
package com.javacoffee.test;
import java ...
Posted by dheeraj on Fri, 10 Sep 2021 10:10:41 -0700
Prototype and prototype chain (inheritance)
Prototype and prototype chain
Constructor Show Prototype Object===Implicit Prototype Object for Instance Object of Current Constructor
A prototype is an object. Its purpose is to provide objects with shared data to other objects.
A function object, either by itself or by object name()Way to execute the function.
A normal object is an ob ...
Posted by unmash on Fri, 10 Sep 2021 09:33:10 -0700
Static page css summary (center, background picture) the most complete solution!
1 centered
horizontally
In line elements are centered horizontally
In line elements here refer to text, image img, hyperlink a, button, etc
text-align: center; /*Set on parent element*/
Block level elements are horizontally centered
1. Change the display attribute of the block level element to inline block, and then set text align: Ce ...
Posted by simonmlewis on Thu, 09 Sep 2021 19:40:09 -0700
Thinking analysis of js case -- five-star scoring effect
Thinking analysis of js case -- five-star scoring effect
The purpose of putting the structure and style in front is to make the idea clearer. You can also look at the next steps first, and then come back and look at the two parts to assist in understanding.
1, Structure
<!DOCTYPE html>
<html lang="en">
<head>
<meta ...
Posted by ErikTheViking on Thu, 09 Sep 2021 18:34:19 -0700
HTML links, images, tables
link
<a>The tag uses hyperlinks to connect with another document on the network. Clicking the link can jump to another page.
The link label can contain text, pictures, etc. click these contents to jump to another page or a position on the current page. When the mouse moves to the link or a small hand appears, the link address is realize ...
Posted by cdjsjoe on Tue, 07 Sep 2021 14:29:54 -0700
Bootstrap notes table
Table style and effect
Bootstrap provides the following categories to set table styles and effects:
Example 1: table and title
Use the. Table category to automatically apply the table styles provided by Bootstrap, including width, height, border, background color, cell spacing, etc. Use the. Caption top category to display the title ab ...
Posted by btherl on Fri, 03 Sep 2021 17:59:02 -0700
Vue learning notes - webpack
Webpack is a front-end resource modular management and packaging tool. The webpack.config configuration file contains entry files, exit files, loader loader and plugin plug-ins
Package directly through the webpack command on the console
The followin ...
Posted by nickk on Thu, 02 Sep 2021 21:35:36 -0700