current location:Home > Technical Articles > Web Front-end > H5 Tutorial
- Direction:
- All web3.0 Backend Development Web Front-end Database Operation and Maintenance Development Tools PHP Framework Daily Programming WeChat Applet Common Problem Other Tech CMS Tutorial Java System Tutorial Computer Tutorials Hardware Tutorial Mobile Tutorial Software Tutorial Mobile Game Tutorial
- Classify:
-
- How to use popstate? Summary of popstate instance usage
- This article mainly introduces the history of pushstate and popstate operations in HTML5, and the relevant information about changing the current URL without refreshing. Friends in need can refer to the next article. Understanding window.history. Window.history represents the history of the window object, which is actively generated by the user. And accept global objects controlled by javascript scripts. The window object provides access to the browser history through the history object. It exposes some very useful methods and properties...
- H5 Tutorial 5876 2017-06-12 13:43:21
-
- 10 recommended articles about mobile pages
- This article mainly introduces the relevant information on the solution to the problem of disabling paste and copy when long pressing the mobile page in HTML5. It is very good and has reference value. Friends in need can refer to the solution as follows: Directly add the following to the CSS file code, you can realize the function of prohibiting pasting and copying on the mobile phone: XML/HTML Code copy content to the clipboard*{ —-webkit-tou...
- H5 Tutorial 2268 2017-06-12 13:33:14
-
- Recommended 8 html5+JavaScript example tutorials
- <!doctype html><html><head><meta charset=utf-8 /><title>html5 Web page effects Email address verification</title><style>body, inpu
- H5 Tutorial 3466 2017-06-12 13:25:41
-
- Summary of 10 basic drawing usage example tutorials
- Pseudo-classes and pseudo-elements are independent of the document structure. The way they obtain elements is not based on basic element characteristics such as id, class, and attributes, but on elements in a special state (pseudo-classes), or on special content in the elements (pseudo-elements). The differences are summarized as follows: CSS pseudo-classes (Pseudo-classes): used to add special effects to certain selectors, that is, add special effects (usually dynamic effects) based on the current static style of the element, so an element achieves a When in a specific state, it may get a pseudo-class style; when the state changes...
- H5 Tutorial 1686 2017-06-12 13:16:59
-
- Summary of articles about the design of button backgrounds
- xml template, custom button background<?xml version="1.0" encoding="utf-8"?><corners android:bottomleftradius="4dp" android:bottomRightRadius="4dp"
- H5 Tutorial 1786 2017-06-12 12:00:27
-
- Summary of the detailed introduction to CreateJS
- The CreateJS library is an engine for HTML5 game development. It is an open source toolkit that can build HTML5 games with rich interactive experiences. It aims to reduce the difficulty and cost of developing HTML5 projects and allow developers to create more modern games in a familiar way. network interaction experience. Mastering CreateJS can more easily complete HTML5 game development. CreateJS provides four tools: EaselJS, TweenJS, SoundJS and PreLoadJS: EaselJS: Simplify processing of HTML5 canvas Tw...
- H5 Tutorial 5013 2017-06-12 11:49:36
-
- Share 10 articles related to fire effects
- Canvas is a very important and useful thing in HTML5. We can draw any element on Canvas, just like you make Flash. Today we will create a flame emission effect on Canvas. It's like an ancient fireball cannon, and it can bounce off the edge of the browser, which feels pretty cool. Let’s take a look at the renderings: We can view the DEMO demonstration of the flame ball here. Of course, we have to analyze the source code, mainly some JS code. First, simply put a canvas tag on the page and give it a simple style: &...
- H5 Tutorial 2342 2017-06-12 11:45:30
-
- Detailed introduction to HTML5 audio and video
- 1. What is Pyglet: Pyglet is a cross-platform framework written in pure Python language for developing multimedia and window special effects applications. Why you need it: Developing the functional modules required for graphical interface applications from scratch is very cumbersome. Pyglet provides a large number of ready-made modules, which saves a lot of time: window functions, OpenGL special effects, audio and video playback, keyboard and mouse processing, and pictures. deal with. (However, Pyglet does not provide UI components such as buttons, toolbars, or menus.) All the above modules are in W...
- H5 Tutorial 2164 2017-06-12 11:16:47
-
- Summary of usage examples of various image styles implemented in html5
- In our daily web page layout, we often encounter the control of the mouse pointer within an object, such as the mouse passing through the pointer and changing into a finger shape. It is common for some websites to have various small picture styles for the mouse pointer. So how to implement this What about mouse style? Below we will give you a summary of how to implement mouse styles! Implementing mouse styles in CSS: 1. Details of mouse styles in CSS This article details some common parameters for implementing mouse styles in CSS, which is very helpful for implementing mouse styles in CSS! 2. Customize mouse style in web...
- H5 Tutorial 4885 2017-06-12 11:04:44
-
- Recommended 5 articles about design reference
- Today's Web pages are becoming more and more high-end and easy to operate. The extensive application of jQuery makes it easier for Web developers to control front-end pages. The introduction of HTML5 also makes the elements of website pages more vivid and dynamic. This article mainly shares with you some HTML5/jQuery animation plug-ins that can make the page more eye-catching, as a design reference. 1. HTML5 Canvas implements dancing time animation. This HTML5 animation is very interesting. First of all, its prototype is a clock, but the use of canvas technology keeps the clock from running...
- H5 Tutorial 1988 2017-06-12 10:50:27
-
- What is standard mode? Summarize the example usage of standard mode
- 1. New Doctype Although using <!DOCTYPE html>, even if the browser does not understand this sentence, it will render according to the standard mode. You can also consider using the weird box mode. 2. Figure elements use <figure> and <figcaption> To semantically represent pictures with captions <figure> <img src=”path/to/i
- H5 Tutorial 4994 2017-06-12 10:28:55
-
- Summary of usage examples of html5 canvas drawing
- HTML5 canvas DrawingThe HTML5 <canvas> tag is used to draw images (via script, usually JavaScript). However, the <canvas> element itself has no drawing capabilities (it's just a container for graphics) - you have to use a script to do the actual drawing. The getContext() method returns an object that provides methods and properties for drawing on the canvas. This manual provides the complete getContext("2d&q...
- H5 Tutorial 2923 2017-06-12 09:55:29
-
- How to use drawing tools? Summary of usage examples of drawing tools
- Following the last time I learned the HTML5 path and circle drawing to make a dynamic clock, and the inversion of different-dimensional space to make a moving solar system, in the past two days I have combined knowledge points such as line drawing, circle drawing, and filling to make a simple online drawing. Tools: View DEMO: HTML5 simple online drawing tool functions include free brushes, erasers, text filling, drawing triangles, drawing circles, etc. It is quite difficult for a novice like me, but I still refer to the information and slowly "work it out" Out. The idea of Free Brush: /******* Free Brush *******/fun...
- H5 Tutorial 3467 2017-06-12 09:35:18
-
- Recommended articles about localStorage and sessionStorage
- 1. Overview LocalStorage and sessionStorage are collectively called Web Storage, which allows web pages to store data on the browser side. The data saved by sessionStorage is used for a browser session. When the session ends (usually the window is closed), the data is cleared; the data saved by localStorage exists for a long time. The next time you visit the website, the web page can directly read the previously saved data. data. Except for the different storage periods, the properties and methods of the two objects are exactly the same. They look a lot like coo...
- H5 Tutorial 2119 2017-06-12 09:17:07
-
- Course recommendations on basic templates
- Example code sharing of HTML5 basic template<!doctype html><!-- simplified doctype works for all previous versions of HTML as well -->
- H5 Tutorial 1790 2017-06-12 09:15:50