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
| /*Transform e Rotate*/ | |
| div | |
| { | |
| width:100px; | |
| height:100px; | |
| background-color:#FFA; | |
| font-size:15pt; | |
| border:1px solid black; | |
| margin:100px auto; | |
| transition: all 2s linear; |
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
| @keyframes teste{ | |
| 100%{ | |
| transform:rotate(360deg); | |
| -ms-transform:rotate(360deg); /* IE 9 */ | |
| -webkit-transform:rotate(360deg); /* Safari and Chrome */ | |
| -o-transform:rotate(360deg); /* Opera */ | |
| } | |
| } | |
| div |
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
| /** Onda com CSS **/ | |
| div.wave{ | |
| position: relative; | |
| width: 100%; | |
| } | |
| div.wave > span{ | |
| float: left; | |
| width: 10%; | |
| height: 300px; | |
| animation: animate 1.5s ease-in-out alternate infinite; |
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
| @keyframes teste{ | |
| 0%{ | |
| background-size:20%; | |
| } | |
| 50%{ | |
| background-size:100%; | |
| } | |
| 100%{ | |
| background-size:20%; | |
| } |
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
| @keyframes teste{ | |
| 0%{ | |
| background-size:20%; | |
| } | |
| 50%{ | |
| background-size:100%; | |
| } | |
| 100%{ | |
| background-size:20%; | |
| } |
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> | |
| <body> | |
| <form action="#"> | |
| Seu Nome: <input type="text" name="nomeUsuario" /><br /> | |
| Seu e-mail: <input type="email" name="emailUsuario" /><br /> | |
| Digite seu e-mail: <input type="url" name="siteUsuario" /><br /> | |
| <input type="submit" /> |
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
| /** | |
| * The first commented line is your dabblet’s title | |
| */ | |
| background: #f06; | |
| background: linear-gradient(45deg, #f06, yellow); | |
| min-height: 100%; |
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
| @keyframes grafico1 { | |
| 0%{ | |
| -webkit-transform:rotate(1deg); | |
| -moz-transform:rotate(1deg); | |
| -o-transform:rotate(1deg); | |
| transform:rotate(1deg); | |
| } | |
| 100%{ | |
| -webkit-transform:rotate(180deg); | |
| -moz-transform:rotate(180deg); |
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
| @keyframes teste{ | |
| 0%{ | |
| background-size:60px; | |
| } | |
| 50%{ | |
| background-size:90px; | |
| } | |
| 100%{ | |
| background-size:60px; | |
| } |