Quantcast
Channel: Chakwithu's Blog
Viewing all articles
Browse latest Browse all 6

Jquery slide down

$
0
0

<script type=”text/javascript” src=”jquery-1.4.2.js”></script>
<style>
div{ background:#de9a44; margin-top:-200px; width:120px; height:80px; display:none; position:absolute;}
</style>

</head>

<body style=”padding:0px; margin:0px;”>
<div id=”block”><img src=”thumb6.jpg” width=”120″ height=”80″ alt=”" /></div>

<script type=”text/javascript”>

$(“document”).ready(function(){
$(“div”).css(“opacity”, “0.5″);
$(“#block”).animate({
width: “120″,
height:”80″,
opacity:”1″,
marginLeft: “0px”,
marginTop:”65px”

}, 2500 );

});
</script>



Viewing all articles
Browse latest Browse all 6

Trending Articles