12345678910111213141516171819202122232425262728293031 |
- @import '~ng-zorro-antd/ng-zorro-antd.min.css';
- #comment {
- background: gray;
- margin-top: 10px;
- }
- // 自定义样式
- :host ::ng-deep {
- .active {
- color: red;
- animation: likeAnima tion 0.3s;
- }
- .inactive {
- color: #333;
- }
- @keyframes likeAnimation {
- 0% {
- transform: translateY(0);
- }
- 50% {
- transform: translateY(-10px);
- }
- 100% {
- transform: translateY(0);
- }
- }
- }
|