1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- @keyframes rotation {
- from {
- -webkit-transform: rotate(0deg);
- }
- to {
- -webkit-transform: rotate(359deg);
- }
- }
- @keyframes translatep1{
- 0%{
- transform: translateY(35px);
- }
- 100%{
- transform: translateY(5px);
- visibility: hidden;
- }
- }
- @keyframes translatep2{
- 0%{
- transform: translateY(-20px);
- }
- 100%{
- transform: translateY(40px);
- visibility: hidden;
- }
- }
- @keyframes translateright{
- 0%{
- right: -50px;
- color: transparent;
- display: none;
- }
- 30%{
- right: 150px;
- color: transparent;
- display: block;
- }
- 100%{
- right: 200px;
- color: white;
- }
- }
- @keyframes translateleft{
- 0%{
- right: 200px;
- color: white;
- display: block;
- }
- 30%{
- right: 150px;
- color: transparent;
- }
- 100%{
- right: -200px;
- color: transparent;
- display: none;
- }
- }
|