Of course, it also includes some personal experience in page performance optimization. I will just mention a few points here. 1. Application of HTML5 tags The application of HTML5 is not just the application of tags, but it can start with the application of tags. Open your browser and view the source code, you will find that <header> <footer> and other standards are already used. You will also find a section of HTML5 Shiv JS code: Copy code The code is as follows:<!--[if lt IE 9]> <script type="text/javascript"> // html5shiv MIT @rem remysharp.com/html5-enabling-script // iepp v1.6.2 MIT @jon_neal iecss.com/print-protector /*@cc_on(function(a,b){function r(a){var b=-1;while(++b<f)a.createElement(e[b])}if(!(!window.attachEvent||!b.createStyleSheet||!function(){var a=document.createElement("div");a.innerHTML="<elem></elem>";return a.childNodes.length!==1}())){a.iepp=a.iepp||{};var c=a.iepp,d=c.html5elements||"abbr|article|aside|audio|canvas|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",e=d.split("|"),f=e.length,g=new RegExp("(^|\\s)("+d+")","gi"),h=new RegExp("<(/*)("+d+")","gi"),i=/^\s*[\{\}]\s*$/,j=new RegExp("(^|[^\\n]*?\\s)("+d+")([^\\n]*)({[\\n\\w\\W]*?})","gi"),k=b.createDocumentFragment(),l=b.documentElement,m=l.firstChild,n=b.createElement("body"),o=b.createElement("style"),p=/print|all/,q;c.getCSS=function(a,b){if(a+""===undefined)return"";var d=-1,e=a.length,f,g=[];while(++d<e){f=a[d];if(f.disabled)continue;b=f.media||b,p.test(b)&&g.push(c.getCSS(f.imports,b),f.cssText),b="all"}return g.join("")},c.parseCSS=function(a){var b=[],c;while((c=j.exec(a))!=null)b.push(((i.exec(c[1])?"\n":c[1])+c[2]+c[3]).replace(g,"$1.iepp_$2")+c[4]);return b.join("\n")},c.writeHTML=function(){var a=-1;q=q||b.body;while(++a<f){var c=b.getElementsByTagName(e[a]),d=c.length,g=-1;while(++g<d)c[g].className.indexOf("iepp_")<0&&(c[g].className+=" iepp_"+e[a])}k.appendChild(q),l.appendChild(n),n.className=q.className,n.id=q.id,n.innerHTML=q.innerHTML.replace(h,"<$1font")},c._beforePrint=function(){o.styleSheet.cssText=c.parseCSS(c.getCSS(b.styleSheets,"all")),c.writeHTML()},c.restoreHTML=function(){n.innerHTML="",l.removeChild(n),l.appendChild(q)},c._afterPrint=function(){c.restoreHTML(),o.styleSheet.cssText=""},r(b),r(k);if(c.disablePP)return;m.insertBefore(o,m.firstChild),o.media="print",o.className="iepp-printshim",a.attachEvent("onbeforeprint",c._beforePrint),a.attachEvent("onafterprint",c._afterPrint)}})(this,document)@*/ </script> <![endif]--> In fact, it is this code that enables these HTML5-specific standards to run on IE6 ~ IE8. The COPYRIGHT information is still retained in the page code, you can study it yourself. The principle is very simple, just use JS to create tags so that IE versions lower than 9 can recognize them, and then use them directly. The key point to focus on when applying tags is the communication of their semantics. Tags like <header> and <footer> are easy to understand, but tags like <section> and <aside>, as well as tags like <small> that use new semantics, are all worth further study. I have also emphasized this aspect in the revision of the new homepage, but the implementation is not very ideal. Next I will do some research in this area. If you are interested, you can join my team. It is worth mentioning that one of the characteristics of HTML5 is "tolerance makes it great", and tags can be used very flexibly. For example, you can use "block-level" links. People who are used to writing XHTML will definitely not be used to the following code, and may even find it unreasonable, but this is what HTML5 allows. Copy code The code is as follows:<article> <a href="story1.html"> Bruce Lawson voted sexiest man on Earth <p><img src="bruce.jpg" alt="gorgeous lovebundle. ">A congress representing all the planet's women unanimously voted Bruce Lawson as the sexiest man alive.</p> <p>Read more</p> </a> </article> So, when I shared last time, I said: "Team collaboration requires us to formulate a set of specifications to help us make the code more unified when applying the HTML5 standard. Generally speaking, XHTML is relatively more in line with our standards. Alipay also adopts this approach and has a set of agreed specifications. We can convert HTML5 into XHTML5 based on XHTML to make it more suitable for our team development." What do you think? 2. Enhanced accessibility and improved speed <br />This time, almost the entire homepage is CMS, and there is a very abnormal requirement that all icons need to be modifiable by the operator. In other words, it is impossible to reduce the number of HTTP requests by using CSS sprites to trade memory for speed. Sister, HTTP is the most expensive thing in exchange for speed. If this is the case, how will my page performance be? In fact, it is something that everyone can experience. The general feeling is that the homepage has more things than the previous version, but the speed is surprisingly much faster. Another obvious feeling is that the pictures are the last ones to come out. Yes, that's why it's still fast despite so many requests. The so-called delayed loading is to record the image address of all images with corresponding tags, then use JS to create an img and change the src value to the address that has been marked in the page. There are two advantages to doing this. First, the text content is displayed first, and then the image is loaded. This process of loading the images in sequence will comfort the user psychologically and make him feel that the page is loading. Second, the images are loaded in parallel, which actually speeds up the page. But there is a risk in doing this. When JS is not enabled, users cannot see the image. Therefore, we need to further enhance the usability of the page so that it can be displayed even without JS. What came to mind at the time was the <noscript> tag, a tag designed specifically for no JS. Now, disable JS in your browser and visit the Alipay homepage again. Right, they are all displayed, right? The purpose has been achieved. The method is as follows: follow the structure of noscript > img, and wrap a <noscript> tag outside each <img> tag. When there is JS, use JS to move the <img> outside the <noscript>. In terms of technical implementation, there is a relatively troublesome problem: the innerHTML obtained from noscript is escaped text in advanced browsers such as Firefox, but it is not escaped in IE. The most important thing is that it cannot be obtained at all using innerHTML in IE7. Escaping is a trivial matter, and you can write a Hack to achieve it, but not being able to obtain it is the biggest problem. So, we have to write an img in this way: Copy code The code is as follows:<noscript data-noscript="https://img.alipay.com/sys/homeindex/style/pb.png"> <img src="https://img.alipay.com/sys/homeindex/style/pb.png" alt="Beginner's Class: Learn Alipay Quickly and Easily" /> </noscript> Add an HTML5 format attribute to the <noscript> tag so that when innerHTML cannot be obtained, its data-noscript attribute can be obtained. Then create an img and set its src value to the value of data-noscript. Here is the code I used on the homepage: Copy code The code is as follows:// Escape innerHTML obtained from noscript HI.text2HTML = function (text) { if(text.indexOf('<') === -1) return text; var tmp = document.createElement("DIV"); tmp.innerHTML = text; return tmp.textContent || tmp.innerText; } // Extract img and append it to the front of the noscript standard. //Use insertBefore + fragment method // hack is compatible with all browsers HI.ns2Live = function (ns) { var img,f = document.createDocumentFragment(); if(ns.innerHTML){ img = D.toDom(HI.text2HTML(ns.innerHTML)); } else { img = document.createElement('IMG'); img.src = ns.getAttribute('data-noscript'); } f.appendChild(img); ns.parentNode.insertBefore(f, ns); } But then again, Alipay's login control is still very poorly made and it simply cannot be implemented without JS. Therefore, this optimization is just a pain to do first, and the control panel still needs to be upgraded. I feel very sad about this. 3. Optimization, optimization, optimization <br />Actually, in this revision, not all the things we wanted to optimize were optimized. For example, the cache of static files can actually be adjusted to 1 year (why not 10 years like Yahoo? Actually, this is a regulation, but I have forgotten the name of the organization. Haha); for example, js and CSS performance optimization, image compression, accessibility enhancement, font enhancement, etc. There are a lot of things, and there are still many points that can be optimized on the homepage. But this time, for some reason, the project was released a week earlier and not fully optimized. There are upgrade packages after the release, but people in the corresponding product lines don’t really care about these performance optimizations. As a student in the architecture group, I actually have no say in the matter. After all, it is a product of someone else's line, and they don't want to do it. I strongly recommend you to take a look at Google's suggestions. Almost all my optimizations are based on this: http://code.google.com/speed/page-speed/docs/overview.html ConclusionOkay, that’s all I have to say. There are only two major points, and the others are mixed in without being fully elaborated. There is much more being worked on. I've just been very lazy recently, and a lot of things have happened. So I am too tired to write blogs. People should still write blogs and summarize things occasionally, otherwise it is easy for their brains to stop working and they won’t be able to string words together into a complete sentence. For this revision, most of the HTML/CSS codes were written by interns, which I also mentioned on Weibo last time. I am mainly responsible for JS, the overall grasp and optimization aspects. I find that the current interns are all very good. When I was a junior, I couldn’t even write code. Ha ha… |
<<: After the click event of html hyperlink a, jump to the address pointed to by href
>>: Details on macrotasks and microtasks in JavaScript
Table of contents Asynchronous traversal Asynchro...
Promise is a new solution for asynchronous progra...
Introduction to Linux alarm function Above code: ...
1. Flex layout .father { display: flex; justify-c...
There are two types of MySQL installation files, ...
CSS Houdini is known as the most exciting innovat...
After minimizing the installation of Python8, I i...
This article shares the specific code of the jQue...
Table of contents 1. What are options? 2. What at...
The following is a bar chart using Flex layout: H...
Call How to call Amap API? The official open docu...
This article example shares the specific code of ...
Use CSS to create a 3D photo wall. The specific c...
Table of contents 1. What is block scope? 2. Why ...
Common utf8mb4 sorting rules in MySQL are: utf8mb...