| | |
| | | |
| | | /* 堆垛机 */ |
| | | .machine { |
| | | position: relative; |
| | | background-color: #fff; |
| | | height: 20px; |
| | | width: 80px; |
| | |
| | | |
| | | |
| | | /* 动画 */ |
| | | /*动画*/ |
| | | .machine { |
| | | position: relative; |
| | | -webkit-animation: machine 2s; |
| | | animation: machine 2s; |
| | | animation-fill-mode: forwards; |
| | | } |
| | | @-webkit-keyframes machine { |
| | | from {left: 0;} |
| | | to {left: 100px} |
| | | } |
| | | @keyframes animationCrn { |
| | | from {left: 0} |
| | | to {left: 100px} |
| | | } |
| | | /*.machine {*/ |
| | | /*position: relative;*/ |
| | | /*-webkit-animation: machine 2s;*/ |
| | | /*animation: machine 2s;*/ |
| | | /*animation-fill-mode: forwards;*/ |
| | | /*}*/ |
| | | /*@-webkit-keyframes machine {*/ |
| | | /*from {left: 0;}*/ |
| | | /*to {left: 100px}*/ |
| | | /*}*/ |
| | | /*@keyframes animationCrn {*/ |
| | | /*from {left: 0}*/ |
| | | /*to {left: 100px}*/ |
| | | /*}*/ |