-
Notifications
You must be signed in to change notification settings - Fork 0
/
animate.txt
31 lines (21 loc) · 1.56 KB
/
animate.txt
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
@-moz-keyframes hallo{from{opacity:0;-moz-transform:translate3d(0, 30px, 0);transform:translate3d(0, 30px, 0)}}@-webkit-keyframes hallo{from{opacity:0;-webkit-transform:translate3d(0, 30px, 0);transform:translate3d(0, 30px, 0)}}@-o-keyframes hallo{from{opacity:0;-o-transform:translate3d(0, 30px, 0);transform:translate3d(0, 30px, 0)}}@-ms-keyframes hallo{from{opacity:0;-ms-transform:translate3d(0, 30px, 0);transform:translate3d(0, 30px, 0)}}@keyframes hallo{from{opacity:0;-webkit-transform:translate3d(0, 30px, 0);-moz-transform:translate3d(0, 30px, 0);-ms-transform:translate3d(0, 30px, 0);-o-transform:translate3d(0, 30px, 0);transform:translate3d(0, 30px, 0)}}
@-webkit-keyframes fade-timeline-in{0%{height:0}50%{height:0}100%{height:100%}}
@-webkit-keyframes fade-moment-in{0%{opacity:.0;-webkit-transform:scale(0.9) translate3d(0,-40px,0)}100%{opacity:1.0;-webkit-transform:scale(1) translate3d(0,0,0)}}
@-moz-keyframes @-o-keyframes @-ms-keyframes @keyframes
box-shadow: 0px 1px 14px rgba(0,0,0,0.6);
animation-fill-mode: both;
animation-duration: 1s;
animation-name: bounceInDown;
border-radius: 3px;
///////////////////////////////////////////////////////////////////
animation-fill-mode: both;
animation-duration: 1s;
animation-name: bounceInDown;
-webkit-animation-name:bounceInDown;
-webkit-animation-fill-mode: both;
-webkit-animation-duration: 1s;
@keyframes bounceInDown{
0% {opacity: 0; transform: translateY(-2000px);}
60% {opacity: 1;transform: translateY(30px);}
80% {transform: translateY(-10px);}
100% {transform: translateY(0);}