Analysis of Vue router source code

start First of all, it was broken up. After changing jobs, I finally had some leisure time. Suddenly, I realized that I hadn't written a blog for more than a year. After thinking about this time, I didn't seem to have much new technology accumulation. I felt so ashamed that I could not confuse myself.OK, let's get into the topic right away. Tod ...

Posted by drisate on Wed, 30 Oct 2019 20:00:58 +0100

2D3D maze game based on WebGL of HTML5

In order to implement a scene game based on HTML5, I used HT for Web To achieve, just 200 lines of code, I can use the "first person" to operate forward and backward up and down, and achieve collision detection. Let's first look at the effect of the implementation:  http://hightopo.com/guide/guide/core/3d/ht-3d-guide.html#ref_collisi ...

Posted by teamatomic on Tue, 22 Oct 2019 15:02:10 +0200

Deep route of React

In this paper, two modes of route parameters acquisition and route are discussed. Continuation: Basic use of route in React This code is still based on the previous code. Parameter acquisition of React route Import the Link component from the react router DOM package. Note the use of deconstruction here Then use the Link component to add a pro ...

Posted by Jip on Sat, 19 Oct 2019 18:10:23 +0200

jQuery Source Code Analysis data Caching Module

jQuery's data caching module attaches any type of data to DOM elements in a secure way, avoiding circular references between JavaScript objects and DOM elements and resulting memory leaks. Data caching module provides a unified method of data setting, reading and removing for DOM elements and JavaScript objects. Within jQuery, it also provides ...

Posted by jenni on Mon, 14 Oct 2019 01:43:21 +0200

Industrialized 3D Electronic Fence Based on HTML5 WebGL

Preface The advancement of modern industrialization has greatly accelerated the modernization process and brought about corresponding security risks. In the traditional field of visual monitoring, the front-end technology based on Web SCADA is generally used to realize 2D visual monitoring. This system uses Hightopo's HT for Web products to co ...

Posted by ssppllaatt on Thu, 10 Oct 2019 08:57:59 +0200

Flask-wtforms are similar to form components in django

I. installation pip3 install wtforms II. Simple Use 1. Create flask objects from flask import Flask, render_template, request, redirect from wtforms import Form from wtforms.fields import simple from wtforms import validators from wtforms import widgets app = Flask(__name__, template_folder='templates') app.debug = True II. Generating form Co ...

Posted by fuji on Fri, 04 Oct 2019 22:04:00 +0200

Front-end series of tutorials for background programmers (24) - Floating

Complete Handbook of C Language Self-study (33 articles) Android Multiresolution Adaptation Framework HTML5 Front-end Development Practical Course Series MySQL Database Practical Tutorial (35 Graphics Edition) Overthrow Yourself and Past - Custom Vi ...

Posted by Angerslave on Mon, 09 Sep 2019 10:26:04 +0200

Bootstarp4 Form Control

1: Input Bootstrap supports all HTML5 input types: text, password, datetime, datetime-local, date, month, time, week, number, email, url, search, tel, and color. Note: If the type attribute of input is not properly declared, the style of the input box will not be displayed. <!DOCTYPE html> <html> <head> <title ...

Posted by feelay on Wed, 31 Jul 2019 08:00:20 +0200

Registration of components

Registration of components By instantiating the Vue constructor function, you get a Vue instance, which we call the'root instance', which is the largest parent This root instance exists as a label, so we also call it a'root component' The root instance is also a component, but what we get is jus ...

Posted by nomad9 on Tue, 30 Jul 2019 20:20:10 +0200

Learning the Front-end Course of web

Form fields, new types, attributes, and structure tags for HTML5 I. Now I have learned three domains: 1. textarea Personal Introduction/Introduction to textarea 2. File Domain Upload Files 3. form Domain form collects control information and submits it Supplement: get submission is fast but unsafe, po ...

Posted by missy3434 on Mon, 29 Jul 2019 11:26:34 +0200