DemureNatural
Pro
CIS and CS are basically the same...yall just take cal 1,2,3...and discreet 2 and operating systems...or something like that....
Honestly....CS is a weird degree because from my experience....eveybody I work with has a CS degree....but we do the same thing...
$(document).ready(function()
{
var color = $("#overlay");
var content = $("#hover");
content.hide();
color.hide();
$("#container").hover(function()
{
content.show().css(
{
"left" : "-400px"
}).animate(
{
left : 0
}, 300);
color.stop().fadeTo(500, .7)
}
, function()
{
content.animate(
{
left : 400
}, 300);
color.stop().fadeTo(500, 0)
});
});
btw...this takes a image...and if you put your mouse over it....another image slides over it and fades
got to love jQuery!!
...Show Off