HTML5 final assignment: film website design - Animation diffuse exhibition learning materials film template (6 pages) HTML+CSS+JavaScript web page design and production finished products

HTML5 final assignment: movie website design - Animation diffuse learning materials movie template (6 pages) HTML+CSS+JavaScript final assignment HTML code student web page course design final assignment Download Web page design and production finished products Common web design topics include individuals, food, companies, schools, tourism, ...

Added by kbrij on Tue, 28 Sep 2021 03:36:29 +0300

Vue directive day 3

V-text: The function of the v-text instruction is to set the contents of the label The default writing method replaces everything and uses the difference expression {} You can replace the specified content <body> <div id="app"> <!-- This can show --> {{ax}}seem <!-- Vue Instruction: text instru ...

Added by curlious on Mon, 27 Sep 2021 14:34:27 +0300

WebApi notes_ 2_ Event advanced

Event advanced 1. Registration event (binding event) 1.1 overview of registration events Adding an event to an element is called a registration event or a binding event. There are two ways to register events: traditional method and method listening registration method. Traditional registration method: Use the event onclick startin ...

Added by capbiker on Sat, 25 Sep 2021 03:43:07 +0300

HTML5 and CSS3 improve

1, New features of HTML5 1.1 new label : header label : navigation tab : content label : defines an area of the document : sidebar labels : tail label <body> <header>Header title</header> <nav>:Navigation tab</nav> <acticle>:Content label&l ...

Added by aruns on Fri, 24 Sep 2021 13:34:42 +0300

ES6 new syntax

(1) let and const 1.let let defines a variable. A variable cannot be defined again, but its value can be changed Code: let name = 'zhangsan'; name = 'lisi'; console.log(name); // lisi let name = 'wangwu'; // Define again, and an error is reported: Identifier 'name' has already been declared Has block level scope. (i.e. braces) Code: ...

Added by GregL83 on Thu, 23 Sep 2021 04:59:35 +0300

Vue Learning Notes 01

Catalog 1. Basic concepts of Vue Vue Features MVVM in Vue Vue's life cycle 2. Basic usage Attributes: el: Determines which element to mount this Vue object on Data: Stores data that can be defined directly by us or from the network methods: This property is used to define a method in a Vue object. computed: after data processing and r ...

Added by jabbaonthedais on Wed, 22 Sep 2021 21:30:10 +0300

General learning and sorting of JavaScript

1, Composition of JavaScript ECMAScript: (core) specifies the Js syntax and basic objects DOM: method and interface of document object model to process web page content markup document html operation document elements BOM: browser objects, manipulating browsers 2, Introduction of JavaScript Internal script mode <script type = "te ...

Added by trochia on Tue, 21 Sep 2021 10:54:21 +0300

3, Java Web Foundation (detailed explanation of xml documents)

1, Concept: Extensible Markup Language 1. Extensible: Labels are custom< user> <student> 2. Functions: Store dataconfiguration fileTransmission in the network 3. The difference between XML and html xml tags are customized and html tags are predefined.The syntax of xml is strict and that of html is loosexml is used to store dat ...

Added by mattchewone on Tue, 21 Sep 2021 05:54:06 +0300

Comprehensive explanation of XML

1. Introduction to XML XML is an extensible markup language. XML tags are not predefined, that is, they are not fixed. Users can define tags according to their own needs. XML is mainly used to store and transmit data Stored data is used to store hierarchical relationships, such as provinces and cities. In the java field, XML is mainly used as a ...

Added by designsubway on Tue, 21 Sep 2021 03:06:10 +0300

Common HTML Tags

1. Title Label h refers to headline, meaning label. <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>My Title Label</title> </head& ...

Added by twmcmahan on Mon, 20 Sep 2021 22:59:17 +0300