experience-square.component.scss 429 B

12345678910111213141516171819202122232425262728293031
  1. @import '~ng-zorro-antd/ng-zorro-antd.min.css';
  2. #comment {
  3. background: gray;
  4. margin-top: 10px;
  5. }
  6. // 自定义样式
  7. :host ::ng-deep {
  8. .active {
  9. color: red;
  10. animation: likeAnima tion 0.3s;
  11. }
  12. .inactive {
  13. color: #333;
  14. }
  15. @keyframes likeAnimation {
  16. 0% {
  17. transform: translateY(0);
  18. }
  19. 50% {
  20. transform: translateY(-10px);
  21. }
  22. 100% {
  23. transform: translateY(0);
  24. }
  25. }
  26. }