Easily manipulate URL s with URLSearchParams

The first personal website of this article, permanent address: https://tie.pub/2019/05/easy-... , welcome to subscribe.The URLSearchParams API provides a consistency interface and URL fragments, and is used to query strings (that is, the part after the address "?).Previously, developers used regular expressions and string segmentation to o ...

Added by maxxx on Wed, 01 Dec 2021 08:18:27 +0200

[CSS3 of front-end tutorial series] 07_CSS3 2D conversion, transition, keyframe animation

CSS3 video through train from getting started to mastering:         CSS3 from entry to mastery, super many case practice, easy to start and easy to understand! 1, CSS3 2D and 3D conversion          CSS3 transformations can move, scale, rotate, elongate, or stretch elements. How does it work?  &n ...

Added by Shendemiar on Tue, 30 Nov 2021 07:30:52 +0200

HTML5 final assignment: Tencent game website design - Tencent game official website (13 pages) HTML+CSS+JavaScript web page design and development

HTML5 final assignment: Tencent game website design - Tencent game official website (13 pages) HTML+CSS+JavaScript web page design and development Common web design topics include individuals, food, companies, schools, tourism, e-commerce, pets, electrical appliances, tea, home, hotels, dance, animation, stars, clothing, sports, cosmetics, ...

Added by Whack on Mon, 29 Nov 2021 12:17:12 +0200

HTML5 final assignment: XMI website design - Xiaomi mall mobile phone (10 pages) HTML+CSS+JavaScript student DW web design assignment finished student dreamweaver web design assignment finished

HTML5 final assignment: XMI website design - Xiaomi mall mobile phone (10 pages) HTML+CSS+JavaScript student DW web design assignment finished student dreamweaver web design assignment finished Common web design topics include individuals, food, companies, schools, tourism, e-commerce, pets, electrical appliances, tea, home, hotels, dance, ...

Added by marowa on Sun, 28 Nov 2021 14:54:42 +0200

Indexed Access Types of TypeScript

prefaceThe official documents of TypeScript have already been updated, but the Chinese documents I can find are still in the older version. Therefore, some newly added and revised chapters are translated and sorted out.This article is compiled from "TypeScript Handbook" Indexed Access Types "Chapter.This article is not translated ...

Added by garry_224 on Fri, 26 Nov 2021 01:04:58 +0200

ES6 series 8: array expansion

ES6 series 8: array expansion Extension operator meaning The spread operator is three dots (...). It is like the inverse operation of rest parameters, turning an array into a comma separated sequence of parameters. console.log(...[1, 2, 3]) // 1 2 3 console.log(1, ...[2, 3, 4], 5) // 1 2 3 4 5 [...document.querySelectorAll('div')] // ...

Added by cal_biker on Fri, 26 Nov 2021 00:35:21 +0200

Common page layout (two column layout, three column layout (Holy Grail, double wings)

1, Two column layout, fixed width on the left and adaptive on the right //html <div id="left">Left fixed width</div> <div id="right">Right adaptive,Front end front end front end front end front end front end front end</div> 1. Float on the left and add oveflow:hidden on the right; become BFC Clear the influence of flo ...

Added by mp04 on Wed, 24 Nov 2021 01:33:18 +0200

Responsive layout of mobile WEB development

1, Responsive layout of mobile WEB development 1.0 principles of responsive development Media query is used to set the layout and style for devices with different widths, so as to adapt to different devices. Division of equipment: Those less than 768 are ultra small screens (mobile phones)The between 768 and 992 is a small screen devi ...

Added by Digital Wallfare on Wed, 24 Nov 2021 01:26:56 +0200

TypeScript advanced types and usage

This article introduces the usage scenarios of advanced TypeScript types in detail, which can provide some help for the daily use of TypeScript. preface This article has been included in   Github:   github.com/beichensky/…[1]   In the middle, pass by and point a Star 1, Advanced type & cross type Cross type is to ...

Added by sv4rog on Tue, 23 Nov 2021 07:04:53 +0200

hexo blog building and theme optimization

crystalBlog Part I hexo blog building and theme optimization (I) Theme optimization II 21. Website log settings Under the subject directory_ In the config.yml configuration file: # Configure website favicon and website LOGO ## local #favicon: /favicon.png #logo: /medias/logo.png # The CDN I use here can also use local files favicon: https: ...

Added by lazersam on Sat, 20 Nov 2021 22:44:34 +0200