JS Basics

JS brief introduction characteristic Interpretative languageSyntax structure similar to C and JavaDynamic languagePrototype based object oriented Basic grammar Output statement <script type="text/javascript"> // Control the browser to pop up a warning box alert("This is my first line js code") // Let the ...

Posted by spudmclard on Sat, 18 Dec 2021 08:58:17 +0100

The widget in fluent has been interviewed by 11 companies such as Tencent, station B and Netease in two months

} ///Called when the State object is permanently removed from the tree; Resources are usually released in this callback @override void dispose() { super.dispose(); debugPrint('child dispose...'); } } The output of the execution is displayed as: - Run to display ```java I/flutter (22218): parent initState...... I/flutter (22218): parent did ...

Posted by moltenice on Fri, 17 Dec 2021 18:38:14 +0100

Build the blind date source code to switch between the application page and the details page

preface In the blind date source code, the elements of the list are consistent with the contents of the details. At this time, using Hero animation to switch to the details will feel a seamless transition and the user experience will be better. thinking The above effect is that the list and details share the background color of the avatar an ...

Posted by Mad Mick on Fri, 17 Dec 2021 15:32:29 +0100

HTML5 final assignment: cake dessert website design - cake dessert store (11 pages) HTML+CSS+JavaScript HTML web page design about delicious dessert

HTML5 final assignment: cake dessert website design - cake dessert store (11 pages) HTML+CSS+JavaScript HTML web page design about delicious dessert Common web design topics include individuals, food, companies, schools, tourism, e-commerce, pets, electrical appliances, tea, home, hotels, dance, animation, stars, clothing, sports, cosmetics ...

Posted by raytri on Fri, 17 Dec 2021 11:41:36 +0100

HTML5 final assignment: Nanjing Tourism Website Design - ancient capital of Six Dynasties - Nanjing Tourism (10 pages) HTML+CSS+JavaScript travel theme Resort Hotel planned travel website design

HTML5 final assignment: Nanjing Tourism Website Design - ancient capital of Six Dynasties - Nanjing Tourism (10 pages) HTML+CSS+JavaScript travel theme Resort Hotel planned travel website design Common web design topics include individuals, food, companies, schools, tourism, e-commerce, pets, electrical appliances, tea, home, hotels, dance, ...

Posted by danc81 on Fri, 17 Dec 2021 09:28:50 +0100

HTML5 final assignment: Seafood catering website design - Seafood catering website (1 page) seafood web page design and production simple static HTML web page work my finished food web page assignment

HTML5 final assignment: Seafood catering website design - Seafood catering website (1 page) seafood web page design and production simple static HTML web page work my finished food web page assignment Common web design topics include individuals, food, companies, schools, tourism, e-commerce, pets, electrical appliances, tea, home, hotels, ...

Posted by bouncer on Fri, 17 Dec 2021 07:52:55 +0100

Operate Windows remote desktop and linux through browser html5, and remember the installation and use of Apache Guacamole

Recently, the function of accessing linux and windows through web version and html has been used in the project. I found that Apache Guacamole has such a function. Therefore, the test experience is very good. Record it for future reference. 1, Introduction to Apache Guacamole Official website: https://guacamole.apache.org/ The main t ...

Posted by nmarisco on Fri, 17 Dec 2021 00:22:31 +0100

Margin overlap and BFC

I. overlapping margins What is margin overlap?When does margin overlap occur?How to solve margin overlap? Margin overlap: if margins are set for both boxes, the margins of the two boxes will overlap in the vertical direction, and the one with the largest absolute value will be displayed on the page. There are two situations where margins over ...

Posted by shawjames on Thu, 16 Dec 2021 23:42:01 +0100

Table common labels and attributes (basic use of table labels, table structure and common lists, custom lists and forms, form input, form input)

1. Common labels and attributes of tables 1.1 basic use of form labels What is the main function of the form? Display data neatly in rows and columns (tables), such as stock pricesLayout pages in tables Basic syntax of table: <table> <tr> <td>Cell content</td> ... //Repeat td → cell </tr> .. ...

Posted by techrat on Thu, 16 Dec 2021 11:35:30 +0100

6 methods of cross domain data acquisition

1, Basic guidance (1) Get data through Ifram Get index2 through Ifram's contentWindow HTML data //index1 <iframe src="index2.html" id="myIframe"></iframe> <script type="text/javascript"> var myIframe = document.getElementById('myIframe'); window.name = 'mainWindow'; myIframe.onload = function(){ console. ...

Posted by nyfael on Thu, 16 Dec 2021 10:59:29 +0100