Blog in Blog Garden with Markdown

Links to the original text: http://www.cnblogs.com/solontan/p/3502072.html Tools for blogging with Markdown Software Notebook is a homemade notebook software similar to EverNote, which can be highly customized. MarkdownPad On-line ...

Posted by Dirtbagz89 on Tue, 01 Oct 2019 22:04:25 -0700

form B for 2.2 HTML Web pages

form B for 2.2.2 HTML Web pages Description: Form form 1. In the form form form, use the HTML version 4 tag Text box, password box, radio button, multi-selection button, drop-down list box, multi-line text file upload, submit button, reset button, ordinary button 2. In the form form form, use the HTML ...

Posted by samuraitux on Tue, 01 Oct 2019 20:02:33 -0700

Decrypt vue-router: from source

The other day I saw a question: Do you really know vue-router?Do you know how vue-router works?With this in mind, the author started the source exploration journey of vue-router.This article does not go into the source line by line, but follows the flow chart drawn by the author to analyze the operation process of each step. Analyze Running Flo ...

Posted by ElkySS on Fri, 30 Aug 2019 20:04:32 -0700

Beautiful html5 Page Special Effect Learning Notes_Arc Menu

Effect: Arc menu, text is regularly distorted and transparency is transformed Simple javascript, difficulty to get started: Simple Welcome to my blog to see this article: https://clatterrr.com/archive... Source code: Demo address: https://clatterrr.github.io/m... Source code: https://github.com/clatterrr/... Learning Notes: text-decorat ...

Posted by thenewguy on Wed, 28 Aug 2019 21:19:46 -0700

Small and beautiful color selector: xy-color-picker

html5 form element input adds a new color type, the color selector. <input type="color"> The default effect of the selector on windows is as follows: It can be said to be very ugly and difficult to use. To solve this problem, xy-ui A new class of components has been added xy-color-picker The results are as follows: Design reference chor ...

Posted by rajatr on Thu, 08 Aug 2019 06:03:27 -0700

Converting row data to column data in SQL Server

Dead work Create tables 1 use [test1] 2 go 3 4 create table [dbo].[student]( 5 [id] [int] identity(1,1) not null, 6 [name] [nvarchar](50) null, 7 [project] [nvarchar](50) null, 8 [score] [int] null, 9 constraint [pk_student] primary key clustered 10 ( 11 [id] asc 12 )with (pad_index = off, statisti ...

Posted by Albatross on Sun, 28 Jul 2019 01:42:14 -0700

Dry Goods | Call AI api to realize text reading on Web pages

Jingdong cloud provides enough ai apis, and they are encapsulated by http. Users can easily access the ai capability of Jingdong cloud in their own systems. Today, I'm going to introduce how to write a few codes and use Jingdong Yun's voice synthesis api to read the text aloud in the web page. The result is small delay, support mainstream ...

Posted by darksniperx on Fri, 19 Jul 2019 03:56:06 -0700

Javascript timer stuff

I. What is a timer? JS provides some native ways to delay execution of a piece of code. Here's a brief introduction setTimeout: Set a timer to execute a function or code snippet after the timer expires var timeoutId = window.setTimeout(func[, delay, param1, param2, ...]); var timeoutId = window.setTimeout(code[, delay]); Timeout Id: Timer ID f ...

Posted by jeffery1493 on Wed, 17 Jul 2019 11:09:40 -0700

jacascript DOM node acquisition

Foreword: This is the author's own understanding and arrangement after learning. If there are any mistakes or doubts, please correct them and I will keep updating them.   getElementById() The obj.getElementById(id) method receives a parameter (the ID of the element), returns the element object if it is found, and returns null if it does not ex ...

Posted by geethalakshmi on Mon, 08 Jul 2019 17:26:13 -0700

The Use of Plupload in jquery Upload Plug-in

First download plupload - > http://www.plupload.com Because Plupload has many configurable parameters, here is the most commonly used interface, combined with jquery-ui display! As follows:   Plupload supports html5,flash,silverlight,html4 by default, and loads them sequentially. If the browser does not support html5, it will choose f ...

Posted by sdat1333 on Sun, 07 Jul 2019 16:28:48 -0700