绿满眶商城微信小程序-uniapp
peng
2025-06-27 3f7acbae32700d7c3c2f883968ea33d436df5219
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<template>
  <view class="animations">
    <view class="box">
      <view class="eye"></view>
      <view class="eye"></view>
    </view>
  </view>
</template>
 
<script>
export default {
  name: "loading-eyes",
  data() {
    return {};
  },
};
</script>
 
<style lang="scss" scoped>
.box {
  width: 110rpx;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
 
.eye {
  width: 50rpx;
  height: 50rpx;
  background: linear-gradient(135deg, #1fa2ff, #12d8fa);
  border-radius: 50%;
  position: relative;
}
 
.eye:after {
  background-color: #ffffff;
  width: 18rpx;
  height: 18rpx;
  border-radius: 50%;
  left: 20rpx;
  top: 24rpx;
  position: absolute;
  content: "";
  -webkit-animation: eyeball 1s linear infinite alternate;
  -moz-animation: eyeball 1s linear infinite alternate;
  animation: eyeball 1s linear infinite alternate;
}
 
@-webkit-keyframes eyeball {
  0% {
    left: 30rpx;
  }
 
  100% {
    left: 2rpx;
  }
}
 
@-moz-keyframes eyeball {
  0% {
    left: 30rpx;
  }
 
  100% {
    left: 2rpx;
  }
}
 
@keyframes eyeball {
  0% {
    left: 30rpx;
  }
 
  100% {
    left: 2rpx;
  }
}
</style>