word memory system

Topic B4: Keyword-based text sorting and retrieval system 1. Subject content and requirements Topic B4: (1) Subject content "Memorizing words - personalized memorizing words" is a software for reciting English words. Users can import the thesaurus to be recited according to their own needs, and can edit their own thesaurus. There a ...

Posted by john-formby on Sun, 11 Sep 2022 21:29:45 +0300

web final assignment design web page - Kaiping Diaolou (20 pages) HTML+CSS+JavaScript

πŸ‘¨β€πŸŽ“Student HTML static web page basic level production πŸ‘©β€πŸŽ“, the page layout is clean and concise. Using HTML+CSS page layout design, web college student web page design homework source code, this is a good tourism web page production, with smart pictures, neat layout, rich content, clear theme, very suitable for beginners to learn a ...

Posted by l_evans on Sat, 10 Sep 2022 21:28:16 +0300

HTML+CSS+JS Environmental Protection web Design Final Course Big Homework web Front-End Development Technology web Course Design Webpage Planning and Design

1. πŸ‘¨β€πŸŽ“ website title 🌲 Environmental protection, 🌳 Earth protection, 🌴 Campus environmental protection, 🌡 Garbage sorting, 🚡🏼 Green home, etc. Design and production of websites. 2. ✍️ Website description ⭐ Summarizes the experience of some students in web page production: general web pages need to incorporate the follow ...

Posted by robembra on Fri, 09 Sep 2022 21:16:06 +0300

Notes on the fourth day of basic JavaScript

JavaScript Basics - day 4 notes Understand the meaning of encapsulation, be able to realize logical encapsulation through the declaration of functions, know the characteristics of object data types, and realize simple calculation functions in combination with mathematical objects. Understand the characteristics of function encapsulationM ...

Posted by rem on Thu, 08 Sep 2022 21:32:14 +0300

Java Web Basics - HTML and css

catalogue Edit HTML basic tag Entity symbol form Cell merge, th label Background color and picture picture Hyperlinks list Forms (relatively important to Java programmers User registration form and drop-down list file control and hidden control readonly and disable maxlength attribute id attribute div and span editing Three way ...

Posted by karq on Mon, 05 Sep 2022 21:22:32 +0300

Js Regular Expression Advanced Notes

Regular introductory notes study 3. Advanced Regular Expressions Introduction to understanding - JavaScript match() method Definition and Usage The match() method retrieves a specified value within a string, or finds a match for one or more regular expressions. Note: The match() method will retrieve the string String Object to find one ...

Posted by wolfraider on Sat, 03 Sep 2022 04:13:18 +0300

We can understand the source code - list page common hook packaging

This article is the sixteenth in a series of ahooks source code articles that have been compiled into documents- address . I think it's not bad. Give me one star Support me, thank you.List page common elementsFor some background management systems, a typical list page includes three parts: filtering form items, Table tables, and Paginatio ...

Posted by DeathStar on Fri, 02 Sep 2022 01:40:00 +0300

Component pass value - slot - props - dynamic class

7.11 Summary 1. Virtual DOM Through the js object structure, a data form that simulates the html tag structure, it is not a tag element, but the structure is similar to the tag element structure, virtual DOM only operates on data objects, and has nothing to do with page views, so the efficiency of virtual DOM execution More efficient than rea ...

Posted by ArmanIc on Wed, 31 Aug 2022 22:08:59 +0300

Front-end high-frequency interview questions (with answers)

Handwritten pubsubclass EventListener { listeners = {}; on(name, fn) { (this . listeners[name] || (this.listeners[name] = [])).push(fn) } once(name, fn) { let tem = (...args) => { this.removeListener(name, fn) fn(...args) } fn.fn = tem this.on(name, tem) } ...

Posted by grandeclectus on Wed, 31 Aug 2022 21:34:03 +0300

Dockerfile usage and case demonstration

What is a Dockerfile? A Dockerfile is a text file used to build an image. The text contains instructions and instructions for building an image. Why use a Dockerfile Question: Many images are officially provided in dockerhub to meet all our services, why do we need custom images? Core function: In the future, users can package their own ...

Posted by Bizzle on Wed, 31 Aug 2022 03:35:41 +0300