Bootstrap actual combat - Comment list
1, IntroductionSocial media websites are popular. People often use comments to express their views. The comment function has become a part of the website.2, Knowledge points2.1 media objectsOfficial explanation: This is an abstract style used to build different types of components with images aligned to the left or right of the text content (su ...
Added by nigeledge on Thu, 27 Jan 2022 08:57:21 +0200
Grail layout and twin wing layout
Grail layout
Requirements: 1. Fixed width and height on both sides, adaptive in the middle. 2. For the three column layout, the middle column is loaded and rendered first. Technique: negative value of float + position + margin left
DOM structure
<div class="container">
<div class="main">main</div>
<div class="left" ...
Added by aminnuto on Thu, 27 Jan 2022 06:13:58 +0200
DOM learning notes
DOM (document object model), a standard programming interface recommended by W3C organization to deal with extensible markup language (HTML/XML). The content, structure and style of web pages can be changed through DOM interface For JavaScript, in order to enable JavaScript to operate HTML,JavaScript has its own dom programming interface. F ...
Added by xplosiongames on Wed, 26 Jan 2022 19:46:46 +0200
3D space conversion (displacement, rotation, stereo rendering)
Attribute: transform. The z-axis is perpendicular to the screen. The positive direction points to the user and the negative direction points to the inside of the screen.
Spatial displacement:
Compound syntax: transform:translate3d(x,y,z);
Separate syntax: Transform: translatex (value); Transform: translatey (value); Transform: translatez (va ...
Added by Xanza on Wed, 26 Jan 2022 19:36:48 +0200
Bootstrap actual combat - Comment list
1, Introduction
Social media websites are popular. People often use comments to express their views. The comment function has become a part of the website.
2, Knowledge points
2.1 media objects
Official explanation: This is an abstract style used to build different types of components with images aligned to the left or right of the text con ...
Added by msk_1980 on Wed, 26 Jan 2022 16:55:53 +0200
Python phase 3 learning day04
1, JavaScript Foundation
1, JavaScript overview
1. What is JavaScript
1) JS introduction
JS, for short, is a browser interpreted language, which is nested in HTML files and handed to the browser for interpretation and execution. It is mainly used to realize the dynamic effect of web pages, user interaction, front and back-end data trans ...
Added by KirstyBurgoine on Wed, 26 Jan 2022 15:15:47 +0200
HTML CSS3 deformation, move, rotate, zoom, 3d, animation, stretch layout and other notes
Deformation movement
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style type="text/css">
div{
width: 100px;
...
Added by Porl123 on Wed, 26 Jan 2022 05:35:02 +0200
HTML structure and text Tags
1, HTML fixed structure
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Page title</title>
</head>
<body>
Web content
</body>
</html>
HTML determines the structure of web pages. All HTML files are completed based on this structure. In addition, it can al ...
Added by budder on Wed, 26 Jan 2022 00:02:26 +0200
How do I use RestTemplate with Ribbon?
1. Using RestTemplate and Integrating Ribbon Spring provides a simple and convenient template class for API calls, RestTemplate.
Use RestTemplate First, let's look at how GET requests are used: add two interfaces to the HouseController of the fsh-house service, one that passes parameters through @RequestParam and returns an object information; ...
Added by samscripts on Tue, 25 Jan 2022 19:21:19 +0200
[front end] nk front end - zero basic FED
HTML
Basic label
1 form type
Please write out the following types of input boxes in turn.
The type is password, and the default value is "nowcoder"The type is the check box and the status is checked
<form>
<input type = "password" value = "nowcoder">
<input type = "checkbox" checked = "checked">
&l ...
Added by brianlange on Tue, 25 Jan 2022 19:09:11 +0200