<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-1.7.2.min.js"></script>
<script>
$(document).ready(function(){
$("#myimage").hide();
$("#myimage").fadeIn("slow");
})
</script>
</head>
<body>
<p>fadeIn</p>
<img id="myimage" src="http://goo.gl/BlQEX"/>
</body>
</html>

No comments:
Post a Comment