CSS for getting started with the web
1. Role of CSS
View the following code
If you use attributes in HTML tags to define styles, each element has different attribute definitions for styles!
<body bgcolor="silver" text="bule">
<h2>h2 text</h2>
<hr color="red"/>
Some Text here.
</body>
<style type="text/css">
body{
background-col ...
Posted by HektoR on Sun, 24 Oct 2021 19:04:30 -0700
Use of HTML5 canvas
What is canvas
In web pages, we also call the special area for drawing graphics as "canvas". Web designers can draw their own graphic styles in this area.
How to use canvas
1. Create canvas
Use the canvas tag in HTML5 to create a canvas in a web page. Basic syntax format:
<canvas id="Canvas name" width="numerical value" he ...
Posted by ShawnK on Sun, 24 Oct 2021 04:45:57 -0700
HTML notes - tags and hyperlinks
This blog is based on the video of station B up@ meeting crazy God and the documents on W3school's official website. There will be some screenshots of the video, the concept of the official website, and my personal notes Note: the screenshots in the blog post and the pictures found on the network are not watermarked with csdn. Only my own pictu ...
Posted by epimeth on Sat, 23 Oct 2021 23:33:17 -0700
HTML (form label < form >)
1. General representation
1. Presentation method - < form action = "jump path" name = "form name" method = "jump request method" >
be careful:
① Path representation
Absolute path: search from the drive letter until the file is found, path + file name
Relative path: the relative path between the current ...
Posted by sfc on Sat, 23 Oct 2021 02:18:11 -0700
Elastic box (flex)
catalogue
1, Properties of commonly used elastic boxes
1. flex container
2. flex project
3. Arrangement direction
4. Properties of the flex container
5. Project properties (itme)
6. Grail layout
7. Length units in CSS
2, Use of multimedia tags in HTML5
1. Format of video file
2. Usage of Video Tags
3. Audio format file
4. Ho ...
Posted by wickning1 on Fri, 22 Oct 2021 04:28:24 -0700
Vue instructions: interpolation ({, v-text and v-html), v-model, v-on
instructions
Directives: special attributes with v-prefix. For example, the v-model in the entry case represents two-way binding.
Interpolation expression
Interpolation: used where vue instance data needs to be displayed
You can invoke the data properties and functions of the instance in the interpolation expression.
Curly bracket ({})
Fo ...
Posted by vaaaska on Thu, 21 Oct 2021 17:46:44 -0700
JavaScript and js constitute web API, DOM and five methods to obtain elements
js consists of web API, DOM, get element, ID get element, tag name get, HTML5 new get, quertSelector, document.querySelectorAll, get special elements (body, HTML)
Composition of JS
API
API Application programming interfaces are predefined functions designed to provide applications and developers with the ability to access a set of programm ...
Posted by gb75 on Tue, 19 Oct 2021 22:16:02 -0700
The basis of Web front-end development -- using tables in web pages
The basis of Web front-end development -- using tables in web pages
preface
This article mainly explains how to create a table in the web, and set the size of the table, cell width and height, background color and font size in the table
Tip: the following is the main content of this article. The following cases are for reference only ...
Posted by badviking on Tue, 19 Oct 2021 12:05:24 -0700
Hippy project source code analysis
2021SC@SDUSC
The first article has explained my division of labor: the whole content of Core
catalogue
include\core\base\macros.h
include\core\base\string_view_utils.h
include\core\base\task.h
include\core\base\task_runner.h
include\core\base\thread.h
Summary
include\core\base\macros.h
#pragma once
#include <stddef.h>
// ...
Posted by Quest on Mon, 18 Oct 2021 23:16:45 -0700
Element plus learning notes
Element plus learning notes (I)
catalogue
Introduce element plus (main. JS)
Underline removal of router link
Implement hover effect through CSS to control another element
Item center setting
layout
Container layout container
Basic specification
Icon icon
Link text link
Menu menu
Introduce element plus (main. JS)
impor ...
Posted by Langridge on Mon, 18 Oct 2021 14:51:03 -0700