4 animation-name: fadeIn;
5 animation-duration: 160ms;
6 animation-timing-function: ease-in-out;
7 animation-fill-mode: forwards;
20 transform: translate3d(580px, 0, 0);
21 animation-name: notification;
22 animation-duration: 3s;
23 animation-timing-function: ease-in-out;
24 animation-fill-mode: forwards;
27 @keyframes notification {
29 transform: translate3d(580px, 0, 0);
32 transform: translate3d(0, 0, 0);
35 transform: translate3d(0, 0, 0);
38 transform: translate3d(580px, 0, 0);
43 from { opacity: 0;transform: scale3d(0, 0, 1);}
45 to { opacity: 1; transform: scale3d(1, 1, 1);}
49 transform-origin: 0% 0%;
50 animation-name: menuIn;
51 animation-duration: 120ms;
53 animation-timing-function: cubic-bezier(.62,.28,.23,.99);