Cascade fade out animation : Animation « jQuery « JavaScript DHTML
- JavaScript DHTML
- jQuery
- Animation
Cascade fade out animation
<html>
<head>
<script type="text/javascript" src="js/jquery-1.3.2.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#info").fadeOut(800).fadeIn(800).fadeOut(400).fadeIn(400).fadeOut(400).fadeIn(400);
});
</script>
</head>
<body>
<div style="" id="info">an animated info message</div>
</body>
</html>
Related examples in the same category