Warning, /webapps/ocs-webserver/library/lessphp/tests/outputs/keyframes.css is written in an unsupported language. File is not indexed.

0001 @keyframes 'bounce' {
0002   from {
0003     top: 100px;
0004     animation-timing-function: ease-out;
0005   }
0006   25% {
0007     top: 50px;
0008     animation-timing-function: ease-in;
0009   }
0010   50% {
0011     top: 100px;
0012     animation-timing-function: ease-out;
0013   }
0014   75% {
0015     top: 75px;
0016     animation-timing-function: ease-in;
0017   }
0018   to {
0019     top: 100px;
0020   }
0021 }
0022 @-webkit-keyframes flowouttoleft {
0023   0% {
0024     -webkit-transform: translateX(0) scale(1);
0025   }
0026   60%,
0027   70% {
0028     -webkit-transform: translateX(0) scale(.7);
0029   }
0030   100% {
0031     -webkit-transform: translateX(-100%) scale(.7);
0032   }
0033 }
0034 div {
0035   animation-name: 'diagonal-slide';
0036   animation-duration: 5s;
0037   animation-iteration-count: 10;
0038 }
0039 @keyframes 'diagonal-slide' {
0040   from {
0041     left: 0;
0042     top: 0;
0043   }
0044   to {
0045     left: 100px;
0046     top: 100px;
0047   }
0048 }