MVC is a good thing, why don't you learn it when you first enter the industry? You have to wait until asp.net MVC comes out before you learn it; ORM is a good thing, why do you have to wait until EF comes out to learn it? HTML5 is a good thing. Why do you have to wait until IE9 comes out to learn it? ...
——I think I should get rid of this bad habit.
No more nonsense.
Requirements: Imitate the function of drawing anchor points for pictures in Dreamweaver, and generate the coords value in the HTML code.
Technical analysis: Intuition tells me that html5 canvas can do the job.
Since I have never had any substantial contact with canvas and have only seen demos developed by others using canvas, I had no choice but to take a look at the html5 canvas tutorial. Found the following link: http://kb.operachina.com/node/190
Write the code after reading the document:
Code analysis:
1.1 html: Use a picture as the background, and put the canvas on top of it for drawing
1.2 css: You must at least place it in the right position and make the transparent places transparent
1.3 javascript: Mouse events need to respond to three: mousedown, mousemove, mouseup

Experienced students may know that this is destined to be a tragedy as soon as they look at this html5 code. When the element is under the canvas, the canvas is opaque anyway. If you forget whether you can draw something on the canvas, it probably won't work. It seems that this canvas element has a "cleanliness" and is unwilling to join the ranks of other low-level elements. Even if I want to settle for the next best thing, it won't work if it appears as a background element of the container. My feeling is that this canvas may not be transparent to other elements. So the above code is actually wrong code...
So how can we achieve an effect similar to the layers in photoshop? That is to create a few more canvas elements, replace the above img with canvas, and then draw the img onto this canvas, so that the canvas is transparent to the canvas. Hey... the code is as follows:
Now that the html is done, the next step is to draw on the canvas. With the help of javascript, this task is very simple.
window.addEventListener('load ', function () {
// Get the canvas element.
var elem = document.getElementById('bg');
if (!elem || !elem.getContext) {
return ;
}
// Get the canvas 2d context.
var context = elem.getContext('2d');
if (!context || !context.drawImage) {
return ;
}
// Create a new image.
var img = new Image();
// Once it's loaded draw the image on the canvas.
img.addEventListener('load ', function () {
// Original resolution: x, y.
context.drawImage(this, 0, 0);
// Now resize the image: x, y, w, h.
context.drawImage(this, 160, 0, 120, 70);
// Crop and resize the image: sx, sy, sw, sh, dx, dy, dw, dh.
context. drawImage(this, 8, 20, 140, 50, 0, 150, 350, 70);
}, false);
img.src = 'http://www.sh1800.net/NavPic/20100917 .jpg';
}, false);
//The code taken directly from the document. Please note that it is necessary for opera and ie9 onload events, otherwise the picture will be blank. Of course, it will not be under Chrome. This way
To be continued....
Original address http://www.cnblogs.com/ice6/archive/2010/09/18/1830020.html

H5 improves web user experience with multimedia support, offline storage and performance optimization. 1) Multimedia support: H5 and elements simplify development and improve user experience. 2) Offline storage: WebStorage and IndexedDB allow offline use to improve the experience. 3) Performance optimization: WebWorkers and elements optimize performance to reduce bandwidth consumption.

HTML5 code consists of tags, elements and attributes: 1. The tag defines the content type and is surrounded by angle brackets, such as. 2. Elements are composed of start tags, contents and end tags, such as contents. 3. Attributes define key-value pairs in the start tag, enhance functions, such as. These are the basic units for building web structure.

HTML5 is a key technology for building modern web pages, providing many new elements and features. 1. HTML5 introduces semantic elements such as, , etc., which enhances web page structure and SEO. 2. Support multimedia elements and embed media without plug-ins. 3. Forms enhance new input types and verification properties, simplifying the verification process. 4. Offer offline and local storage functions to improve web page performance and user experience.

Best practices for H5 code include: 1. Use correct DOCTYPE declarations and character encoding; 2. Use semantic tags; 3. Reduce HTTP requests; 4. Use asynchronous loading; 5. Optimize images. These practices can improve the efficiency, maintainability and user experience of web pages.

Web standards and technologies have evolved from HTML4, CSS2 and simple JavaScript to date and have undergone significant developments. 1) HTML5 introduces APIs such as Canvas and WebStorage, which enhances the complexity and interactivity of web applications. 2) CSS3 adds animation and transition functions to make the page more effective. 3) JavaScript improves development efficiency and code readability through modern syntax of Node.js and ES6, such as arrow functions and classes. These changes have promoted the development of performance optimization and best practices of web applications.

H5 is not just the abbreviation of HTML5, it represents a wider modern web development technology ecosystem: 1. H5 includes HTML5, CSS3, JavaScript and related APIs and technologies; 2. It provides a richer, interactive and smooth user experience, and can run seamlessly on multiple devices; 3. Using the H5 technology stack, you can create responsive web pages and complex interactive functions.

H5 and HTML5 refer to the same thing, namely HTML5. HTML5 is the fifth version of HTML, bringing new features such as semantic tags, multimedia support, canvas and graphics, offline storage and local storage, improving the expressiveness and interactivity of web pages.

H5referstoHTML5,apivotaltechnologyinwebdevelopment.1)HTML5introducesnewelementsandAPIsforrich,dynamicwebapplications.2)Itsupportsmultimediawithoutplugins,enhancinguserexperienceacrossdevices.3)SemanticelementsimprovecontentstructureandSEO.4)H5'srespo


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Atom editor mac version download
The most popular open source editor

SublimeText3 Linux new version
SublimeText3 Linux latest version

SublimeText3 Mac version
God-level code editing software (SublimeText3)

SublimeText3 English version
Recommended: Win version, supports code prompts!

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.