fadeOut() jquery
Criando o efeito fadeOut com jquery.
Veja o exemplo em funcionamento.
Download do codigo.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>fadeOut com jquery</title>
<script src="js/jquery-1.3.2.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function() {
$('#imagem').fadeOut(2000);
});
</script>
</head>
<body>
<div id="teste">
<img id="imagem" src="imagens/foto.jpg" />
</div>
</body>
</html> |
Não existem posts relacionados.