123456789101112131415161718192021222324 |
- <template>
- <view class="content">
-
- </view>
- </template>
- <script>
- export default {
-
- }
- </script>
- <style>
- .test{
- animation: 1s aaa infinite;
- }
- @keyframes aaa{
- from{transform: rotate(0deg);}
- to{transform: rotate(360deg);}
- }
- .content{
- }
- </style>
|