HTML5 best practices to make Web App faster

HTML5 best practices to make Web App faster

[[136286]]

Tip 1: Use web storage instead of cookies

The disadvantage of cookie encryption is that all cookie data that meets the rules will be carried in each HTTP request, which will increase the request response time, especially XHR requests. It is a better practice to use sessionStorage and localStorage instead of cookies in HTML5.

This alternative method can store data locally in the user's local storage or session time. The data will not be passed with the HTTP request, so we prefer web storage and only use cookies as an alternative.

  1. // if localStorage is present, use that  
  2. if (( 'localStorage' in window) && window.localStorage !== null ) {
  3. // easy object property API  
  4. localStorage.wishlist = '["unicorn", "Narwhal", "deathbear"]' ;
  5. } else {
  6. // without sessionStorage we'll have to use a far-future cookie  
  7. // with document.cookie's awkward API  
  8. var date = new Date();
  9. date.setTime(date.getTime() + ( 365 * 24 * 60 * 60 * 1000 ));
  10. var expires = date.toGMTString();
  11. var cookiestr = 'wishlist=["unicorn", "Narwhal", "deathbear"];' +
  12. ' expires=' + expires + '; path=/' ;
  13. document.cookie = cookiestr;
  14. }

Tip 2: Use CSS Transitions instead of JavaScript animations

CSS Transition can bring higher performance, less code, easier maintenance and understanding.

Tip 3: Use client-side database instead of server requests

Web SQL Database and IndexedDB give browsers database storage capabilities. Many application scenarios can be migrated to client-side databases to reduce the number of server requests.

LocalStorage and sessionStorage are faster than client databases for simple data storage and can be used to implement some simple states and progress saving.

When a component needs to manage hundreds of pieces of data (such as a friend list) and support user search, filtering, and sorting, storing a copy of the data in the client database can effectively reduce the number of HTTP requests. See the Web SQL Database tutorial for detailed instructions.

Tip 4: Use JavaScript native API

With the popularity of higher versions of JavaScript, many new APIs, such as Array prototype, can be used directly in most browsers. For example:

  1. // give me a new array of all values ​​multiplied by 10  
  2. [ 5 , 6 , 7 , 8 , 900 ].map(function (value) {
  3. return value * 10 ;
  4. });
  5. // [50, 60, 70, 80, 9000]  
  6. // create links to specs and drop them into #links.  
  7. var linksList = document.querySelector( '#links' );
  8. var links = [];
  9. [ 'html5' , 'css3' , 'webgl' ].forEach(function (value) {
  10. links.push(value.link( 'http://google.com/search?btnI=1&q=' + value + ' spec' ));
  11. });
  12. linksList.innerHTML = links.join( '' );
  13. // return a new array of all mathematical constants under 2  
  14. [ 3.14 , 2.718 , 1.618 ].filter(function (number) {
  15. return number < 2 ;
  16. });
  17. // you can also use these extras on other collections link nodeLists  
  18. [].forEach.call(document.querySelectorAll( 'section[data-bucket]' ),
  19. function (elem, i) {
  20. localStorage[ 'bucket' + i] = elem.getAttribute( 'data-bucket' );
  21. });

These native methods are usually faster than writing loops manually:

  1. for (var i = 0 , len = arr.length; i < len; ++i) {
  2. }

Using native JSON.parse() is more efficient and safer than json2.js.

The native String.prototype.trim is also a good example of features that are not in HTML5 and should be widely used.

Tip 5: Use cache manifest not only for offline apps, but also for online websites

Using cache for sites like backend management systems can greatly improve performance.

Cache manifest has some advantages over setting Expires: By explicitly declaring the files that need to be cached, the browser can optimize them and may download them locally before you use them.

The basic structure of the page can be regarded as a template. The displayed content changes with the data. The templateable HTML structure is cached through cache.manifest, and the content is updated after obtaining JSON data from the server.

See the application cache tutorial for detailed instructions.

Tip 6: Enable hardware acceleration to enhance the visual experience

Some browsers may use GPU acceleration to make high-speed animations smoother. Firefox Minefield, IE9, and Safari have already claimed to have achieved hardware acceleration. Chromium has also added 3D transform acceleration for the window platform. The support for hardware acceleration in various browsers will definitely get better and better.

When hardware acceleration is supported and enabled, animation, rotation, scaling, and opacity will definitely be smoother. All actual operations occur on the GPU without the need to redraw the content. However, it should be noted that any operation that affects the page layout will slow down the speed.

Tip 7: Use web workers to perform CPU-intensive operations

Web workers have two benefits: 1) they are fast and 2) they don't block the browser. See the web worker slide for more information.

Some possible use cases for web workers:

Long text formatting

Syntax highlighting

Image Processing

Image synthesis

Large array processing

Tip 8: HTML5 form attributes and input types

HTML5 adds a series of input types, including search, tel, url, email, datetime, date, month, week, time, number, range, color, etc. In browsers that support these functions, use native functions and js plug-ins as supplements.

Like placeholder, required, pattern can greatly improve the usability and performance of the page.

Click HTML5 form for more information.

Tip 9: Use CSS3 to reduce the use of images

Reducing images can reduce HTTP requests, reduce page size, and make maintenance easier. Common properties are as follows:

linear and radial gradients

border-radius

box-shadow

rgb

transform

CSS Mask

Common usage scenarios include: polished buttons via gradients, replicate many other effects.

Tip 10: Use WebSocket instead of XHR for faster interactions and less bandwidth

WebSockets is designed for Comet, and using it to implement Comet does bring more benefits than XHR.

<<:  A historical review: The 12 most important WWDC moments in Apple's development

>>:  Must read: Seven insights from 100 top APP developers

Recommend

How much does it cost to customize a home mini program in Ganzi?

The mini program provides convenience for publici...

Bidding keyword selection skills, a comprehensive summary of 14 questions!

This article will talk about keyword selection sk...

Uncover the secrets of user growth from Weibo product details

The motivation for writing this article was the d...

Taobao store management, optimization and promotion methods

Running a Taobao online store is not an easy task...

Can I optimize my phone without rooting? I tried these 10 apps

We cannot easily obtain root permissions on every...

Android source code download: QQ third-party login demo

Functional classification: Other Supported platfo...

Wang Chong: Business model + team management + traffic breakthrough

Course Catalog: ├──Wang Chong 1.1.mp4 1.11G ├──Wa...

The popular Nanjing tea drinking exchange group, looking forward to your joining

Nanjing tea drinking exchange group, Nanjing high...

Uncle Wolf's Toutiao Traffic Drainage Technology 9th Course Video

Course Outline 1. The traffic-generating advantag...

Review of 5G chips in 2020: Old players play new copies, no one is left behind

If 2019 is the first year of 5G commercialization...

How to create a hit product through seed user operations?

Seed users generally have an open and adventurous...

Ruan Yifeng: Github's object counting algorithm

When using Github, have you ever seen the followi...

Tips on server rental and server hosting

When customers choose to rent a server, they shou...

Problem record: Stripping of iOS user behavior statistics code

[[140437]] I have been working on a statistics mo...