H5 HTML Mobile Touch drag drop Custom Drag Style Drag Scheme Simulated with PointerEvent

Preface Native drag events have many criticisms. For example, the element that follows the mouse pointer when dragging is too simple. For example, dataTransfer is inaccessible except for start and drop, which makes drop elements less likely to accept drop. For example, there is no elegant way to set the mouse pointer during dragging. For examp ...

Posted by flashicon on Thu, 17 Feb 2022 21:08:39 +0100

HTML (required for beginners)

1. Concept A language that uses tags or tags to describe Web pages and present information to users 2. Hyper Text Mark Language: Hypertext: the page can contain pictures, links, music, programs and other non text elements Tag: that is, tag. Different tags realize different functions. Language: an interactive tool between human and compute ...

Posted by langemarkdesign on Mon, 14 Feb 2022 14:11:23 +0100

Common text labels

1, Comments in html 1.1 annotation label Shortcut keys for adding comments in the development environment: windows system: ctrl +/Apple system: cmd +/ 1.2 general format of notes <!--This is a comment. Comments are not displayed in the browser.--> 1.3 condition notes <!--[if IE 8]> .... some HTML here .... <![endif]-- ...

Posted by tpearce2 on Sun, 13 Feb 2022 17:34:51 +0100

Basic knowledge of HTML+CSS

origin HTML(1993.6~2013.5.6) W3C (World Wide Web Consortium) was established in 1994 (neutrality) Shortcuts & basic labels To get the empty style CSS, click me Run: Ctrl+r Completion syntax: Tab Label: < H1 > ~ < H6 > Paragraph: < p ></p> Line feed:</br> Horizontal line: < / HR > Bold: < strong > ...

Posted by ardyandkari on Sat, 12 Feb 2022 17:56:26 +0100

HTML CSS transition effect

HTML CSS transition effect 1,transition Transition: through the transition, you can specify the switching mode of the attribute of an element when it changes, so as to create some very good effects and improve the user experience. For example: transition: height 2s; /*When the height of the element changes, it takes two seconds to transition ...

Posted by saraadmin on Sat, 12 Feb 2022 07:06:16 +0100

html simple content

HTML # HTML is a front-end technology. It is mainly used for the development of front-end web pages. The web page developed with HTML is a static page 1, Introduction to HTML HTML, commonly known as web page, means that what we see when we open the browser to visit any website is provided by HTML page (or content related to HTML technology) ...

Posted by opido on Sat, 12 Feb 2022 01:55:46 +0100

[animation Xiaole] HTML+CSS custom loading animation 060

preface Hello! buddy! Thank you very much for reading Haihong's article. If there are mistakes in the article, you are welcome to point out ~ Self introduction ˊ ᵕ ˋ) ੭ Nickname: Haihong Tag: program ape | C + + player | student Introduction: I got acquainted with programming in C language and then transferred to computer major. I was luc ...

Posted by taurus5_6 on Fri, 11 Feb 2022 04:16:55 +0100

css set triangle

1. In development, sometimes some small triangles are used to emphasize or mark elements, so as to distinguish different items, and then draw the triangles into a more obvious color to achieve the effect. How can we draw triangles? I didn't know before. Recently, I saw some web pages being used and marked, They all use background pictures for m ...

Posted by mottwsc on Fri, 11 Feb 2022 03:03:44 +0100

Learning new features of Java 8

1, Lambda expression 1. Basic syntax of lambda expression        java 8 introduces a new operator "- >", the arrow operator / lambda operator, and the arrow operator divides the lambda expression into two parts: Left: of lambda parameter On the right side of the list: the functions to be performed in lambda, that is, lambda ...

Posted by corruption on Thu, 10 Feb 2022 21:25:53 +0100

[WEB] common basic knowledge of CSS

CSS definition and precautions CSS -Understand- Cascading Style Sheets matters needing attention Each CSS style consists of two parts: selector and declaration The declaration consists of two parts: attribute and attribute value The declaration must be placed in curly braces {} (internal style and external style), and the attribute and ...

Posted by mhoward on Thu, 10 Feb 2022 18:08:31 +0100