I'm new to jquery and javascript in general so I'm having some trouble figuring things out. Right now, I want an image to animate downward (iphone) while an image fades in (shadow) while another image animates upwards (reflection) while fading in. The code I have now just fades everything in at the same speed (doesn't matter if each div has different time values). Also, if I try to animate the reflection, it just pulls all the elements down (if I edit the start value of the div). This is probably because the reflection is the first element in the "wrap" div. I can't really change this because I want the iphone overlapping the shadow which overlaps the reflection. So, I need to initiate the reflection div first (I tried using z values which didn't work). Any tips? Here is the code:
<!DOCTYPE html>
<html lang="en">
<head>
<script src="jquery-1.3.2.min.js" type="text/javascript"></script>
<link rel=StyleSheet href="external_style_sheet.css" type="text/css">
<script type="text/javascript">
$(function() {
$('#iphone').animate({"top" : "1000px"}, 1200);
$('#shadow').fadeIn(1800);
$('#reflection').fadeIn(1800);
});
</script>
</head>
<body id="index" class="home">
<div id="wrap" >
<div id="left" />
<div id="right" >
<div id="reflection" />
<div id="shadow" />
<div id="iphone" />
</div>
</body>
</html>
And the CSS
`p {font-family: georgia, serif; font-size: x-small;}
hr {color: #000000; height: 1px }
a:hover {color: #ff0000; text-decoration: none}
body {
background-color:#1b1a1f;
}
#reflection {
margin-top:0px;
margin-left: 400px;
position:relative;
width: 414px;
height: 993px;
background-image: url("images/reflection2.png");
display: none;
z-index: -1;
}
#shadow {
margin-top:0px;
margin-left: 0px;
position:absolute;
width: 414px;
height: 818px;
background-image: url("images/shadow3.png");
display: none;
z-index: 1;
}
#iphone {
margin-top:-1000px;
margin-left: 0px;
position:relative;
width: 414px;
height: 818px;
background-image: url("images/iphone_2.png");
z-index: 0;
}
#wrap {
width:800px;
margin:0 auto;
background-image: url("images/logo.png");
}
#left {
float:left;
width:500px;
}
#right {
float:right;
width:500px;
}
HTML
<div id="bar">Content</div>
