Small changes in Logo, big differences in mood, SVG vector animation format website Logo picture production and practice tutorial (Python 3)
The original text is reproduced from "Liu Yue's technology blog" https://v3u.cn/a_id_207
Once upon a time, SVG(Scalable Vector Graphics) vector animation was known as a technology cursed by browsers because of poor hardware support (IE) and endless compatibility tuning (Safari). However, today in 2022, everything is different. It is ...
Added by convinceme on Wed, 23 Feb 2022 18:21:41 +0200
ES6 -- Iterator
ES6 – Iterator
1, The concept of Iterator2, Function of traverser3, Iterator traversal process4, The interface implementation of self simulation traverser
1. General implementation2. Writing method of class deployment Iterator interface (es6 deployment Iterator class, equivalent to es5 function)3. Simulate the function class writing ...
Added by uluru75 on Wed, 23 Feb 2022 18:13:20 +0200
JavaScript advanced programming - Chapter 10: Functions
Chapter 10: function
In fact, functions are also objects. Each Function is an instance of the object Function, which also has properties and methods;
Because the function is also an object, the function name is a pointer to the function object;
10.1 declaration of functions
Function declaration function sum(num1,num2){
return num1+num2 ...
Added by radstorm on Wed, 23 Feb 2022 17:59:55 +0200
Introduction to zero basic JavaScript-BOM (day 4)
1, BOM browser object model
1.BOM overview
1.1 what is BOM
BOM (Browser Object Model) is the Browser Object Model. It provides an object that interacts with the browser window independent of content. Its core object is window.
BOM consists of a series of related objects, and each object provides many methods and attributes.
BOM lacks stand ...
Added by wholein1 on Wed, 23 Feb 2022 17:29:26 +0200
javascript program of analog clock based on h5 canvas
design sketch
|
Update log
1. The first parameter of the construction method supports passing in the id of the canvas dom object. You can pass either the canvas dom object or the id of this dom object. 2. setOptions method is added to facilitate dynamic updating of analog clock properties. 3. Fix the BUG that the passed in options d ...
Added by harrylt on Wed, 23 Feb 2022 14:51:01 +0200
DOM and BOM of JavaScript objects
preface
This article briefly introduces the BOM object and DOM object of JavaScript, as well as the related methods and usage.
catalogue
1, DOM object simple learning
2, Events
2.1 simple learning of events
2.2. Event monitoring mechanism
Case: bulb switch:
3, BOM object
3.1. BOM object concept:
3.2 composition
Case: ...
Added by corbin on Wed, 23 Feb 2022 14:44:16 +0200
AJAX -- Native AJAX
Native AJAX
GET request
I Example requirements: click the button, send a GET request, and render HELLO AJAX in div
Create server JS file
//1. Introduce express
const express = require('express');
//2. Create application object
const app = express();
//3. Create routing rules
//requset is the encapsulation of request message
//r ...
Added by jp2php on Wed, 23 Feb 2022 13:46:26 +0200
[Javascript Design Mode] responsibility chain mode
Make multiple objects have the opportunity to process the request, so as to avoid the coupling relationship between the sender and receiver of the request, connect these objects into a chain, and pass the request along the chain until an object can process it. These objects in the transmission chain are called nodes.
In practical application ...
Added by brandtj on Wed, 23 Feb 2022 12:20:53 +0200
Webview module manages the application window interface and realizes the logical control and management operation of multiple windows (middle 1)
Set the Webview window rendered event parameter
<span style="background-color:#333333"><span style="color:#474747"><code>
<span style="color:#f0e68c"><strong>void</strong></span><span style="color:#ffffff"> wobj</span><span style="color:#ffffff">.</span><span style="color:# ...
Added by karldesign on Wed, 23 Feb 2022 09:52:37 +0200
Webview module manages the application window interface and realizes the logical control and management operation of multiple windows
A set of properties that define page or control deformations
A set of properties that define the effect of a page or control transformation
Properties:
Property: (String type) the property that produces the transformation effect The default value is "all", and other values are not supported temporarily. Platform support ...
Added by thinkmarsh on Wed, 23 Feb 2022 09:37:27 +0200