Currently my site takes a millennia to load even though it has barely anything in it. My assumption is that it's because there are quite a few images and JavaScript on the page.
Is there a way to test for what is causing the long load times?
|
Currently my site takes a millennia to load even though it has barely anything in it. My assumption is that it's because there are quite a few images and JavaScript on the page. Is there a way to test for what is causing the long load times? |
|||||||||
|
|
Test your page here PageSpeed Insights - Google Developers and you will see all suggestions for making your site faster. Also your background image is 935KB. You can optimize your image. See tutorial here: http://inobscuro.com/tutorials/optimizing-images-for-web-35/ |
|||||||||||
|
|
Here are some basic things you can follow to increase your site speed:
|
|||||
|
|
Here is the list where you can test your webpage: Also to speed up your page you can use:
|
|||
|
|
|
The other answers here do a good job of detailing performance debugging tools and tips to improve load times, so I won't repeat them. Your main problem is that you load absolutely everything in your site before displaying your homepage to the visitor. This is unnecessary, and is the main contributor to the perception that your site loads slowly. I can understand that you want to preload as much as possible, so that as the visitor browses your site, everything will seem to load instantly. However, all you're doing is moving the small load times for each section into one huge up-front load time. Where a visitor might browse only one area of your site, they are still paying for the load time of the whole site, instead of just the sections they visit. The easiest way to implement small load times is to split each section into its own page, and then loading only what you display on that page. Resources such as Javascript and CSS usually cache pretty well, so you usually don't need to worry about their load times impacting anything other than your homepage. Alternatively, assuming you want to keep your whole site on one page, you will need to dynamically add the various sub-sections to the page using Javascript, once everything required for your homepage has finished loading and the progress bar has been hidden. Yes, if the visitor is quick to click on a sub-section, they will see its content being loaded in, but if they're only interested in your Contact Me section, they will be able to get the information they need a lot sooner without even noticing that the other sections haven't fully loaded yet. That, and don't use huge background images. It's okay to upscale a lower resolution image to fill the screen, and to up the JPEG compression level to decrease the file size. It's a background image and should not be a focal point - leave the high resolution images for your portfolio. :) |
||||
|
|
Install the FireBug plugin into FireFox, then load your site with the NET tab open in FireBug. You can see how long each resource takes to load. It looks like there are two background images that take over 20 seconds each to load. |
|||
|
|
|
I have few suggestions to improve the load time:
|
||||
|
|
|
Chrome has a console where you can view loading times of the site and all things that need to be downloaded. |
||||
|
|
|
So: Yes, you really need to fix your site. People won't wait to load a site, particularly a personal / professional site. Biggest thing I'm seeing on your site is almost nonexistent image compression / optimization. Here are some guidelines: Use JPEGs for photographs and gradients. Use PNGs (or GIFs) for line art or text. This has to do with the compression algorithms used for each type of image. Usually a JPEG compression rate of 80% is pretty good for most images on the web, including all of your thumbnail / gallery shots. For example, this JPEG here: http://www.jj-triggs.com/images/page4_img3.jpg is 25k. 25k!!! That's HUGE, and you've got like 15 of them on the page! At an 80% compression rate (image size of 7k) I can detect a few compression artifacts but I'm also a professional designer & am looking for it. Even at 85%, the image size drops to about 8k. Ditto your background images. bg_img1.jpg is clocking in at about 900k; bg_img2.jpg is 1.5 mb. This is crazy! Particularly since the cityscape is partially blurred out already — there's no detail to preserve that warrants a total lack of JPEG compression. I knocked the compression on bg_img2.jpg to 60%, got a filesize of <200k, and there's almost no detectable difference in quality: http://cl.ly/image/230I3L3x0n1D. Sometimes, when the image is the focus of the content / site, it's okay for it to be big and less-compressed. But these images in your background and your galleries are just not important: they're background images. They're not meant to be studied. The gallery images ditto; they're just giving the user an idea of what they'll get on the next click. Use selective JPEG compression. Adobe Fireworks offers this — if you have a large image where part of it is sharp and in focus but the rest is blurry or will be covered by content, you can select a region that you want a higher JPEG compression rate for (say 85%) and crank the rest of the image down to 50% or whatever. For example, here's Cityscape with selective JPEG selection http://cl.ly/image/0T2z330P083r. The in-focus parts are at 75%; the rest is at 50% with smoothing turned on. Don't use graphics for text. In this day of TypeKit, Google Webfonts, and reasonable typographical control via CSS, it's almost never necessary. Reduce the number of files that need to be transferred. Each image, JavaScript file, CSS file, etc. require their own HTTP request in addition to download times. Here are a few articles about image compression and download times: |
||||
|
|
|
It a long reply ... but I feel it provides enough details to some basic approaches to improve a site's performance. The following answer will also be applicable to almost any site. Any specific examples provided below might be for current version of http://www.jj-triggs.com/ In the points below, I'm referring to the usage of Net Panel of Firebug add-on in Firefox but other browsers also have similar tools with almost the same approach as I have mentioned. Install Firebug on Firefox and open your website. Enable Firebug for your site (F12). Enable Firebug's Net panel if it is not enabled already. Your site: http://www.jj-triggs.com/ - takes 5-6 seconds on my system for repeat visits (For this answer, I have not mentioned approaches to improve on this) - but the first visit took around 60 seconds. (The points below focus on how to improve on that) Most of the points mentioned below would improve your site for the first load (or fresh reloads) After having loaded the page already, to test fresh loads, you can use Ctrl+F5, Ctrl+R, Ctrl+Shift+R (depending on the browser). Monitor the Net Panel of Firebug when the page is loading. How much time a site takes depends on:
I believe fixing these mentioned issues might reduce your (http://www.jj-triggs.com/) first load time to 10-30% of the time it takes currently. |
|||
|
|
|
Use |
|||
|
|
|
|
|||
|
|
|
You could have a check here too : Test site This test shows you images are a great contributors to your load time. In particular background images that seems to be not optimized and weight 1.4 MB Study this, reduce your number of requests, downscale your images, defer loading and you should begin to reduce your load time Disclaimer : I am one of the dev invovlved in the free tool above |
|||
|
|
|
The main problem on this page are the big images bg_img1.jpg, bg_img2.jpg and bg_img3.jpg. They have a size between 0.91MB and 1.45MB. |
|||
|
|