I've was recently tasked to create a HTML driven webpage that will emulate basic Flash transitions and animations, which made me turn to jquery, naturally. The website has four different pages, each with its specific background and a small paragraph of text.
Easy? Apparently not so for me. When I got the interactive mock up running for approval, I ran into the issue of sluggish animation specific only to (surprise, surprise) Macs with monitors above 18". The PCs I ran my tests on worked perfectly across all major browsers - Chrome, IE9 and FF. For Macs above 18", however, it was FF that worked best while the rest was terrible.
I've tried means and ways to optimize the jquery codes and even resorted to preloading all the images into the browsers cache with an index.html page and then redirecting the user to the actual web page, all in hope that there could be less stress on the processing time.
Unfortunately, nothing worked.
This is a single page setup so that could possibly be one of the major factors contributing to the sluggishness, but it doesn't explain why it works fine on PCs and below 18" Macs.
In any case, here are snippets of my codes for the animation to fade in elements on load and to transit between pages/sections:
$(document).ready(function(){
$("#home-button").click(function(){
$("#home").fadeTo(2000, 1);
$("#location").fadeTo(2000, 0);
$("#services").fadeTo(2000, 0);
$("#contact").fadeTo(2000, 0);
$("#bg-img-1").fadeTo(2000, 0);
$("#bg-img-2").fadeTo(2000, 0);
$("#bg-img-3").fadeTo(2000, 0);
$("#bg-img-4").fadeTo(2000, 1);});
$("#location-button").click(function(){
$("#home").fadeTo(2000, 0);
$("#location").fadeTo(2000, 1);
$("#services").fadeTo(2000, 0);
$("#contact").fadeTo(2000, 0);
$("#bg-img-1").fadeTo(2000, 0);
$("#bg-img-2").fadeTo(2000, 1);
$("#bg-img-3").fadeTo(2000, 0);
$("#bg-img-4").fadeTo(2000, 0);});
$("#services-button").click(function(){
$("#home").fadeTo(2000, 0);
$("#location").fadeTo(2000, 0);
$("#services").fadeTo(2000, 1);
$("#contact").fadeTo(2000, 0);
$("#bg-img-1").fadeTo(2000, 0);
$("#bg-img-2").fadeTo(2000, 0);
$("#bg-img-3").fadeTo(2000, 1);
$("#bg-img-4").fadeTo(2000, 0);});
$("#contact-button").click(function(){
$("#home").fadeTo(2000, 0);
$("#location").fadeTo(2000, 0);
$("#services").fadeTo(2000, 0);
$("#contact").fadeTo(2000, 1);
$("#bg-img-1").fadeTo(2000, 1);
$("#bg-img-2").fadeTo(2000, 0);
$("#bg-img-3").fadeTo(2000, 0);
$("#bg-img-4").fadeTo(2000, 0);});});
Here are my CSS styles for the background image and some graphic elements which has to resize and crop according the browser's size:
img.bg{
min-height: 100%;
min-width: 900px;
width: 100%;
height: auto;
position: fixed;
top: 0;
left: 0;
z-index:-4;}
#bg-img-1,#bg-img-2, #bg-img-3, #bg-img-4{
opacity:0;}
img.d-4{
min-height: 100%;
min-width: 1024px;
width: 92%;
height: auto;
position: fixed;
top:0;
left:0;
z-index:-3;
opacity:0.3;}
img.d-5{
min-height: 100%;
min-width: 1024px;
width: 92%;
height: auto;
position: fixed;
margin-left:-50px;
z-index:-3;}
Any help or opinions on how to optimize this further and prevent sluggish issues is greatly appreciated.
Thank you guys! :)
