Click on the #4 to show some notes stored with local storage
Press → to advance and show next comments
Press ← to go back
Or navigation with buttons or browser history
Files will be at estelle.github.com/mobileperf
Estelle Weyl | @estellevw | Github | Press → to advance, 2 for comments, 4 to read/write notes.
Click on the #4 to show some notes stored with local storage
Press → to advance and show next comments
Press ← to go back
Or navigation with buttons or browser history
Files will be at estelle.github.com/mobileperf
<!DOCTYPE HTML> <html> <head> <meta charset="UTF-8"> <title>Titles are good for SEO</title> <link rel="stylesheet" href="prettyWhenItLoads.css"/> </head> <body> <!-- lots of good content --> <script src="dontBlockHTMLandCSS.js"></script> </body> </html>
Decreasing the number of components on a page reduces the number of HTTP requests required to render the page, resulting in faster page loads. Some ways to reduce the number of components include: combine files, combine multiple scripts into one script, combine multiple CSS files into one style sheet, and use CSS Sprites and image maps.
You may expect a browser to do nothing when it encounters an empty image src. However, it is not the case in most browsers. IE makes a request to the directory in which the page is located; Safari, Chrome, Firefox 3 and earlier make a request to the actual page itself. This behavior could possibly corrupt user data, waste server computing cycles generating a page that will never be viewed, and in the worst case, cripple your servers by sending a large amount of unexpected traffic.
Compression reduces response times by reducing the size of the HTTP response. Gzip is the most popular and effective compression method currently available and generally reduces the response size by about 70%. Approximately 90% of today's Internet traffic travels through browsers that claim to support gzip.
Moving style sheets to the document HEAD element helps pages appear to load quicker since this allows pages to render progressively.
JavaScript scripts block parallel downloads; that is, when a script is downloading, the browser will not start any other downloads. To help the page load faster, move scripts to the bottom of the page if they are deferrable.
CSS expressions (supported in IE beginning with Version 5) are a powerful, and dangerous, way to dynamically set CSS properties. These expressions are evaluated frequently: when the page is rendered and resized, when the page is scrolled, and even when the user moves the mouse over the page. These frequent evaluations degrade the user experience.
The Domain Name System (DNS) maps hostnames to IP addresses, just like phonebooks map people's names to their phone numbers. When you type URL www.yahoo.com into the browser, the browser contacts a DNS resolver that returns the server's IP address. DNS has a cost; typically it takes 20 to 120 milliseconds for it to look up the IP address for a hostname. The browser cannot download anything from the host until the lookup completes.
Minification removes unnecessary characters from a file to reduce its size, thereby improving load times. When a file is minified, comments and unneeded white space characters (space, newline, and tab) are removed. This improves response time since the size of the download files is reduced.
URL redirects are made using HTTP status codes 301 and 302. They tell the browser to go to another location. Inserting a redirect between the user and the final HTML document delays everything on the page since nothing on the page can be rendered and no components can be downloaded until the HTML document arrives.
Duplicate JavaScript and CSS files hurt performance by creating unnecessary HTTP requests (IE only) and wasted JavaScript execution (IE and Firefox). In IE, if an external script is included twice and is not cacheable, it generates two HTTP requests during page loading. Even if the script is cacheable, extra HTTP requests occur when the user reloads the page. In both IE and Firefox, duplicate JavaScript scripts cause wasted time evaluating the same scripts more than once. This redundant script execution happens regardless of whether the script is cacheable.
A complex page means more bytes to download, and it also means slower DOM access in JavaScript. Reduce the number of DOM elements on the page to improve performance.
Making an HTTP request and receiving a 404 (Not Found) error is expensive and degrades the user experience. Some sites have helpful 404 messages (for example, "Did you mean ...?"), which may assist the user, but server resources are still wasted.
The IE-proprietary AlphaImageLoader filter attempts to fix a problem with semi-transparent true color PNG files in IE versions less than Version 7. However, this filter blocks rendering and freezes the browser while the image is being downloaded. Additionally, it increases memory consumption. The problem is further multiplied because it is applied per element, not per image.
Web page designers sometimes set image dimensions by using the width and height attributes of the HTML image element. Avoid doing this since it can result in images being larger than needed. For example, if your page requires image myimg.jpg which has dimensions 240x720 but displays it with dimensions 120x360 using the width and height attributes, then the browser will download an image that is larger than necessary.
A favicon is an icon associated with a web page; this icon resides in the favicon.ico file in the server's root. Since the browser requests this file, it needs to be present; if it is missing, the browser returns a 404 error (see "Avoid HTTP 404 (Not Found) error" above). Since favicon.ico resides in the server's root, each time the browser requests this file, the cookies for the server's root are sent. Making the favicon small and reducing the cookie size for the server's root cookies improves performance for retrieving the favicon. Making favicon.ico cacheable avoids frequent requests for it.
More powerful browsers. Less powerful CPUs
Background images are first rendered with image data send to Core Animation. Safari doesn't render <img> first. The decoded image file is sent, as is, pre-rendered, to the Core Animation as a new layer. Foreground images is sent to Core Animation as image data which it has to keep in graphics memory. This uses more memory.
Scaled: 1,850 milliseconds
Right-sized: 625 milliseconds
CPU Drains the battery. Avoid using it!
Each host is a different lookup!!
<!DOCTYPE HTML> <html> <head> <meta charset="UTF-8"> <title>Titles are good for SEO</title> <link rel="stylesheet" href="prettyWhenItLoads.css"/> </head> <body> <!-- lots of good content --> <script src="dontBlockHTMLandCSS.js"></script> </body> </html>
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<title>Titles are good for SEO</title>
<style id="keyword">
/* lots of styles */
</style>
</head>
<body>
<!-- lots of good content -->
<script id="otherKey">
/* JS that makes site work
</script>
<script>
/* localStorage & cookies script*/
</script>
</body>
</html>
High memory usage causes a slow UI
When you are out of memory, you are out of memory
Browser crashes to free up memory
Device | Memory | |
---|---|---|
iPhone 3G | 128MB | |
iPhone 3GS | 256 MB | |
iPhone 5/5S/6 | 1 GB | |
HTC Inspire | 768 MB | |
iPad 1 | 256 MB | |
iPad 3/4 | 1 GB | |
iPod Touch (4) | 256 MB | |
Samsung Galaxy Note Edge | 3GB | |
Intex Cloud FX | 128 MB | |
MacBook Pro | 16 GB |
Mobile Norm: 512MB of RAM, with 1GHz Processor
PC Norm: 8GB+ RAM
Running Services | ||
Other | 73MB Avail: 255MB + 182MB in 21 | |
Calendar | 8.4MB | |
Process:com.htc.bgp | ||
ObexService | 31:52:14 | |
Started by application: Touch to stop | ||
AT&T Navigator | 8.4MB | |
Process: com.telnav.app.android.congular | ||
ResoucePreLoader | Restarting | |
Started by application: Touch to stop | ||
AT&T Spots | 2.4MB | |
Process: com.matchboxmobile.wasp | ||
WispService | 31:52:14 | |
Started by application: Touch to stop | ||
Media | 4.1MB | |
Process: android.process.media | ||
DownloadService | 31:52:14 | |
Started by application: Touch to stop | ||
PVWmdrmService | 2.2MB | |
Process: com.pv.wmdrmservice | ||
PVWmdrmService | 31:52:14 | |
Started by application: Touch to stop |
Rendered media are still the same size.
Video, Audio, Images and Text can be compressed to save bandwidth, but they're uncompressed in the browser.
Don't send big images to small screens?
Images 1024px or bigger are too big for memory
Change your user agent and click on links above
Scaled: 1,850 milliseconds
Right-sized: 625 milliseconds
<link rel='stylesheet' media='screen and (min-width: 320px) and (max-width: 480px)'
href='css/smartphone.css' />
@media screen and (max-width: 480px){ body { background-image: url(small/bgimage.jpg); } } @media screen and (min-width: 481px) and (max-width: 960px){ body { background-image: url(medium/bgimage.jpg); } } @media screen and (min-width: 481px) and (max-width: 960px), screen and (min-width:540px) and (-webkit-min-device-pixel-ratio: 2){ body { background-image: url(large/bgimage.jpg); } }
media="only print and (color)" media="only screen and (orientation: portrait)" media="not screen and (color)" media="print, screen and (min-width: 480px)"
88KB
+
4KB
<
551KB
div { background-image:url(images/frame.jpg); -webkit-mask: url(images/framemask.png); }
Static images may render faster than CSS effects
code { color: black; font-size: 85%; background-color: rgba(255,255,255,0.9); transition: all 2s ease-in 50ms; } code:hover { color: red; font-size: 120%; background-color: rgba(255,255,255,0.8); }
Requires reflow!
code { color: black; font-size: 85%; background-color: rgba(255,255,255,0.9); transition: all 2s ease-in 50ms; } code:hover { color: red; transform: scale(1.4); transform-origin: 0 0; background-color: rgba(255,255,255,0.8); }
Only repaints
div { transform: translateZ(0); }
Composited mage in memory == H x W x 4
Take advantage of hardware acceleration, but don't abuse it. GPU accelerated elements eat video memory
When visual changes do NOT require recalculation of layout
When visual changes REQUIRE recalculation of layout
More nodes = more expensive!
Pool Elements and Objects
Reuse instead of Allocate and Destroy