小程序动画实现旋转
- .question .desc .image-rotate {
- position: absolute;
- z-index: 2;
- margin-left: 20rpx;
- margin-top: 20rpx;
- height: 280rpx;
- width: 280rpx;
- border-radius: 140rpx;
- animation: headRotate 6s linear infinite
- }
- /* 头像旋转效果 */
- @keyframes headRotate{
- 0% {transform: rotate(0deg);}
- 50% {transform: rotate(180deg);}
- 100% {transform: rotate(360deg);}
- }