I'm relatively new to jQuery, and I'm currently having trouble with transitions and AJAX content.
There are basically 4 pages, each with their own "theme" (a unique background image with a tinted overlay DIV).
I've posted the code below. It looks right to me, in theory. but of course it is not working.
The comments in the code explain the process that I would like to see happen.
$(document).ready(function() {
// begin 'photography' theme transition
$('a.photography').click(function() {
// 1. these next two lines hide the content containers and their data
$('#contentCanvas_A').fadeOut().hide();
$('#contentCanvas_B').fadeOut().hide();
// 2. animate/fade the tint color for the #contentCanvas overlay
$('#Window').animate({ backgroundColor: "rgba('67,32,12,0.8')}, "slow"});
// 3. seamless fade swap of the <body> background image possible?
$('body').css('background-image','url(bgimage-photography.jpg)').fadeIn("slow");
// 4. Finally, fade in new content from external HTML file
$('#contentCanvas_A').stop().load("photography.html").delay(800).fadeIn("slow");
});
... and this is how the HTML link would look:
<a class="photography" href="" title="online photo gallery">Photography</a>
Is this the proper/efficient way of doing it? Trying it using variables and the "#" symbol doesn't seem to work.
Some notes:
I have attempted to create a separate DIV that has the background image, but I could not get it to fill the entire screen -- it only showed the first 5 pixels or so at the top. Therefore, as shown in the code, I'm trying to change the background image for the actual body element instead.
The "photography.html" file (and others similar) contains just the DIVs for its own content layout, nothing else.
I would greatly appreciate guidance with this. Thanks all!