index.vue 263 B

123456789101112131415161718192021222324
  1. <template>
  2. <view class="content">
  3. </view>
  4. </template>
  5. <script>
  6. export default {
  7. }
  8. </script>
  9. <style>
  10. .test{
  11. animation: 1s aaa infinite;
  12. }
  13. @keyframes aaa{
  14. from{transform: rotate(0deg);}
  15. to{transform: rotate(360deg);}
  16. }
  17. .content{
  18. }
  19. </style>