Created
June 18, 2020 15:22
-
-
Save zerobugs-oficial/08113b4616e306daddf3822d4e27274d to your computer and use it in GitHub Desktop.
Utilizando animações CSS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Document</title> | |
<link href="animate.css" rel="stylesheet" type="text/css"> | |
</head> | |
<body> | |
<button class="animated bounceInLeft">Botão Animado</button> | |
<div class="animated bounceIn"> | |
<p>Exemplo de DIV animada</p> | |
<input placeholder="Campo" type="text"> | |
<p> | |
<button>Salvar!</button> | |
</p> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment