15

Website Optimization

Embed Size (px)

DESCRIPTION

Performing the least amount of things in order to achieve most amount of optimization you can make on the front-end of a website.

Citation preview

Page 1: Website Optimization
Page 2: Website Optimization

OPTIMIZATION EFFICIENCY

Effort

Results

80% of the optimization is done in 20% of the time

Page 3: Website Optimization

OPTIMIZATION EFFICIENCY

Effort

Results

80% of the optimization is done in 20% of the time

Page 4: Website Optimization

TWO MAIN GOALS

Low number of filesSmall payload size

Page 5: Website Optimization

SMALL PAYLOAD SIZESaving images

PNG8 small dimensions, no alpha transparency

PNG24 alpha transparency*

JPEG big dimensions, pictures*

Page 6: Website Optimization

SMALL PAYLOAD SIZECompressing images

ImageOptim (Mac)

Smushit (online)

PunyPNG (online)

Page 7: Website Optimization

SMALL PAYLOAD SIZEMinify Javascript & CSS

YUI Compressor

Page 8: Website Optimization

SMALL PAYLOAD SIZEGzip text based files

.htaccess<IfModule mod_deflate.c>AddOutputFilterByType DEFLATE text/text text/html text/plain text/xml text/css application/x-javascript application/javascript</IfModule>

Page 9: Website Optimization

LOW NUMBER OF FILESCombining images

CSS Sprites

Page 10: Website Optimization

LOW NUMBER OF FILESCombining Javascript & CSS

One file, ideally

Page 11: Website Optimization

LOW NUMBER OF FILESCombining Javascript & CSS

One file, ideally; two files, max

@media print instead of print.css

Page 12: Website Optimization

LOW NUMBER OF FILESCaching files

.htaccess<FilesMatch "\.(gif|jpg|png)$">Header set Cache-Control "public"Header set Expires "Thu, 16 Sep 2011 20:00:00 GMT"Header unset Last-Modified</FilesMatch>

Page 13: Website Optimization

RESOURCES

Performance test toolsYSlow - http://developer.yahoo.com/yslow/Page Speed - http://code.google.com/speed/page-speed/FireBug - http://getfirebug.com/Web Developer Tools(Safari & Chrome)

Image CompressorsInageOptim - http://imageoptim.pornel.net/Smush.it - http://www.smushit.comPunyPNG - http://www.punypng.com

Sprite GeneratorCSS Sprite Generator - http://spritegen.website-performance.org/

Online YUI CompressorOnline JavaScript/CSS Compressor - http://refresh-sf.com/yui/

Page 14: Website Optimization

THANK YA.

Page 15: Website Optimization

STELIAN

designs stuff for digiti