Warning, /webapps/ocs-webserver/library/lessphp/tests/inputs/keyframes.less 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 
0007         25% {
0008                 top: 50px;
0009                 animation-timing-function: ease-in;
0010         }
0011 
0012         50% {
0013                 top: 100px;
0014                 animation-timing-function: ease-out;
0015         }
0016 
0017         75% {
0018                 top: 75px;
0019                 animation-timing-function: ease-in;
0020         }
0021 
0022         to {
0023                 top: 100px;
0024         }
0025 }
0026 
0027 @-webkit-keyframes flowouttoleft {
0028         0% { -webkit-transform: translateX(0) scale(1); }
0029         60%, 70% { -webkit-transform: translateX(0) scale(.7); }
0030         100% { -webkit-transform: translateX(-100%) scale(.7); }
0031 }
0032 
0033 div {
0034         animation-name: 'diagonal-slide';
0035         animation-duration: 5s;
0036         animation-iteration-count: 10;
0037 }
0038 
0039 @keyframes 'diagonal-slide' {
0040 
0041         from {
0042                 left: 0;
0043                 top: 0;
0044         }
0045 
0046         to {
0047                 left: 100px;
0048                 top: 100px;
0049         }
0050 
0051 }
0052