valaxy-theme-hairy 0.0.17 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -2,8 +2,8 @@
2
2
  import { capitalize, computed } from 'vue'
3
3
  import { useConfig, useThemeConfig } from 'valaxy'
4
4
  import { useI18n } from 'vue-i18n'
5
-
6
5
  import pkg from 'valaxy/package.json'
6
+ import HairyFooterFish from './HairyFooterFish.vue'
7
7
 
8
8
  const { t } = useI18n()
9
9
 
@@ -21,38 +21,39 @@ const footerIcon = computed(() => themeConfig.value.footer.icon)
21
21
  </script>
22
22
 
23
23
  <template>
24
- <footer v-if="themeConfig.footer" class="va-footer p-4 pt-5 pb-14" text="center sm" style="color:var(--va-c-text-light)">
25
- <div v-if="themeConfig.footer.beian?.enable && themeConfig.footer.beian.icp" class="beian" m="y-2">
26
- <a href="https://beian.miit.gov.cn/" target="_blank" rel="noopener">
27
- {{ themeConfig.footer.beian.icp }}
28
- </a>
29
- </div>
30
-
31
- <div class="copyright flex justify-center items-center" p="1">
32
- <span>
33
- &copy;
34
- <template v-if="!isThisYear">
35
- {{ themeConfig.footer.since }} -
36
- </template>
37
- {{ year }}
38
- </span>
39
-
40
- <a v-if="footerIcon" class="inline-flex animate-pulse ml-2" :href="footerIcon.url" target="_blank" :title="footerIcon.title">
41
- <div :class="footerIcon.name" />
42
- </a>
43
-
44
- <span>{{ config.author.name }}</span>
45
- <span class="mx-2">|</span>
46
- <span v-if="config.comment.waline" class="flex items-center">
47
- <div class="i-ri-eye-fill mr-1" />
48
- <span class="waline-pageview-count" data-path="/">1</span>
49
- </span>
50
- </div>
51
-
52
- <div v-if="themeConfig.footer.powered" class="powered" m="2">
53
- <span v-html="poweredHtml" /> | <span>{{ t('footer.theme') }} - <a :href="themeConfig.pkg.homepage" :title="`valaxy-theme-${config.theme}`" target="_blank">{{ capitalize(config.theme) }}</a> v{{ themeConfig.pkg.version }}</span>
24
+ <footer v-if="themeConfig.footer" class="va-footer pt-5" text="center sm" style="color:var(--va-c-text-light)">
25
+ <div class="z-5 relative">
26
+ <div v-if="themeConfig.footer.beian?.enable && themeConfig.footer.beian.icp" class="beian" m="y-2">
27
+ <a href="https://beian.miit.gov.cn/" target="_blank" rel="noopener">
28
+ {{ themeConfig.footer.beian.icp }}
29
+ </a>
30
+ </div>
31
+ <div class="copyright flex justify-center items-center" p="1">
32
+ <span>
33
+ &copy;
34
+ <template v-if="!isThisYear">
35
+ {{ themeConfig.footer.since }} -
36
+ </template>
37
+ {{ year }}
38
+ </span>
39
+
40
+ <a v-if="footerIcon" class="inline-flex animate-pulse ml-2" :href="footerIcon.url" target="_blank" :title="footerIcon.title">
41
+ <div :class="footerIcon.name" />
42
+ </a>
43
+
44
+ <span>{{ config.author.name }}</span>
45
+ <span class="mx-2">|</span>
46
+ <span v-if="config.comment.waline" class="flex items-center">
47
+ <div class="i-ri-eye-fill mr-1" />
48
+ <span class="waline-pageview-count" data-path="/">1</span>
49
+ </span>
50
+ </div>
51
+ <div v-if="themeConfig.footer.powered" class="powered" m="2">
52
+ <span v-html="poweredHtml" /> | <span>{{ t('footer.theme') }} - <a :href="themeConfig.pkg.homepage" :title="`valaxy-theme-${config.theme}`" target="_blank">{{ capitalize(config.theme) }}</a> v{{ themeConfig.pkg.version }}</span>
53
+ </div>
54
54
  </div>
55
55
 
56
56
  <slot />
57
+ <HairyFooterFish />
57
58
  </footer>
58
59
  </template>
@@ -0,0 +1,17 @@
1
+ <script lang="ts" setup>
2
+ import { ref } from 'vue'
3
+ import { useScriptTag } from '@vueuse/core'
4
+ import { RENDERER } from './fish'
5
+
6
+ const fishContainer = ref()
7
+
8
+ const tag = useScriptTag('https://cdn.bootcdn.net/ajax/libs/zepto/1.2.0/zepto.min.js')
9
+ tag.load()
10
+ .then(() => {
11
+ RENDERER.init()
12
+ })
13
+ </script>
14
+
15
+ <template>
16
+ <div id="jsi-flying-fish-container" ref="fishContainer" style="margin-top: -60px;"></div>
17
+ </template>
@@ -0,0 +1,315 @@
1
+ /* eslint-disable eqeqeq */
2
+ /* eslint-disable no-var */
3
+ /* eslint-disable vars-on-top */
4
+ /* eslint-disable @typescript-eslint/no-use-before-define */
5
+ /* eslint-disable no-undef */
6
+ const RENDERER = {
7
+ POINT_INTERVAL: 5,
8
+ FISH_COUNT: 3,
9
+ MAX_INTERVAL_COUNT: 50,
10
+ INIT_HEIGHT_RATE: 0.5,
11
+ THRESHOLD: 50,
12
+ init() {
13
+ this.setParameters()
14
+ this.reconstructMethods()
15
+ this.setup()
16
+ this.bindEvent()
17
+ this.render()
18
+ },
19
+ setParameters() {
20
+ this.$window = $(window)
21
+ this.$container = $('#jsi-flying-fish-container')
22
+ this.$canvas = $('<canvas />')
23
+ this.context = this.$canvas.appendTo(this.$container).get(0).getContext('2d')
24
+ this.points = []
25
+ this.fishes = []
26
+ this.watchIds = []
27
+ },
28
+ createSurfacePoints() {
29
+ const count = Math.round(this.width / this.POINT_INTERVAL)
30
+ this.pointInterval = this.width / (count - 1)
31
+ this.points.push(new SURFACE_POINT(this, 0))
32
+ for (let i = 1; i < count; i++) {
33
+ const point = new SURFACE_POINT(this, i * this.pointInterval)
34
+ const previous = this.points[i - 1]
35
+ point.setPreviousPoint(previous)
36
+ previous.setNextPoint(point)
37
+ this.points.push(point)
38
+ }
39
+ },
40
+ reconstructMethods() {
41
+ this.watchWindowSize = this.watchWindowSize.bind(this)
42
+ this.jdugeToStopResize = this.jdugeToStopResize.bind(this)
43
+ this.startEpicenter = this.startEpicenter.bind(this)
44
+ this.moveEpicenter = this.moveEpicenter.bind(this)
45
+ this.reverseVertical = this.reverseVertical.bind(this)
46
+ this.render = this.render.bind(this)
47
+ },
48
+ setup() {
49
+ this.points.length = 0
50
+ this.fishes.length = 0
51
+ this.watchIds.length = 0
52
+ this.intervalCount = this.MAX_INTERVAL_COUNT
53
+ this.width = this.$container.width()
54
+ this.height = this.$container.height()
55
+ this.fishCount = (((this.FISH_COUNT * this.width) / 500) * this.height) / 500
56
+ this.$canvas.attr({ width: this.width, height: this.height })
57
+ this.reverse = false
58
+ this.fishes.push(new FISH(this))
59
+ this.createSurfacePoints()
60
+ },
61
+ watchWindowSize() {
62
+ this.clearTimer()
63
+ this.tmpWidth = this.$window.width()
64
+ this.tmpHeight = this.$window.height()
65
+ this.watchIds.push(setTimeout(this.jdugeToStopResize, this.WATCH_INTERVAL))
66
+ },
67
+ clearTimer() {
68
+ while (this.watchIds.length > 0)
69
+ clearTimeout(this.watchIds.pop())
70
+ },
71
+ jdugeToStopResize() {
72
+ const width = this.$window.width()
73
+ const height = this.$window.height()
74
+ const stopped = width == this.tmpWidth && height == this.tmpHeight
75
+ this.tmpWidth = width
76
+ this.tmpHeight = height
77
+ if (stopped)
78
+ this.setup()
79
+ },
80
+ bindEvent() {
81
+ this.$window.on('resize', this.watchWindowSize)
82
+ this.$container.on('mouseenter', this.startEpicenter)
83
+ this.$container.on('mousemove', this.moveEpicenter)
84
+ },
85
+ getAxis(event) {
86
+ const offset = this.$container.offset()
87
+ return { x: event.clientX - offset.left + this.$window.scrollLeft(), y: event.clientY - offset.top + this.$window.scrollTop() }
88
+ },
89
+ startEpicenter(event) {
90
+ this.axis = this.getAxis(event)
91
+ },
92
+ moveEpicenter(event) {
93
+ const axis = this.getAxis(event)
94
+ if (!this.axis)
95
+ this.axis = axis
96
+
97
+ this.generateEpicenter(axis.x, axis.y, axis.y - this.axis.y)
98
+ this.axis = axis
99
+ },
100
+ generateEpicenter(x, y, velocity) {
101
+ if (y < this.height / 2 - this.THRESHOLD || y > this.height / 2 + this.THRESHOLD)
102
+ return
103
+
104
+ const index = Math.round(x / this.pointInterval)
105
+ if (index < 0 || index >= this.points.length)
106
+ return
107
+
108
+ this.points[index].interfere(y, velocity)
109
+ },
110
+ reverseVertical() {
111
+ this.reverse = !this.reverse
112
+ for (let i = 0, count = this.fishes.length; i < count; i++)
113
+ this.fishes[i].reverseVertical()
114
+ },
115
+ controlStatus() {
116
+ for (let i = 0, count = this.points.length; i < count; i++)
117
+ this.points[i].updateSelf()
118
+
119
+ for (let i = 0, count = this.points.length; i < count; i++)
120
+ this.points[i].updateNeighbors()
121
+
122
+ if (this.fishes.length < this.fishCount && --this.intervalCount == 0) {
123
+ this.intervalCount = this.MAX_INTERVAL_COUNT
124
+ this.fishes.push(new FISH(this))
125
+ }
126
+ },
127
+ render() {
128
+ requestAnimationFrame(this.render)
129
+ this.controlStatus()
130
+ this.context.clearRect(0, 0, this.width, this.height)
131
+ this.context.fillStyle = 'hsl(0, 0%, 95%)'
132
+ for (let i = 0, count = this.fishes.length; i < count; i++)
133
+ this.fishes[i].render(this.context)
134
+
135
+ this.context.save()
136
+ this.context.globalCompositeOperation = 'xor'
137
+ this.context.beginPath()
138
+ this.context.moveTo(0, this.reverse ? 0 : this.height)
139
+ for (let i = 0, count = this.points.length; i < count; i++)
140
+ this.points[i].render(this.context)
141
+
142
+ this.context.lineTo(this.width, this.reverse ? 0 : this.height)
143
+ this.context.closePath()
144
+ this.context.fill()
145
+ this.context.restore()
146
+ },
147
+ }
148
+
149
+ var SURFACE_POINT = function (renderer, x) {
150
+ this.renderer = renderer
151
+ this.x = x
152
+ this.init()
153
+ }
154
+
155
+ SURFACE_POINT.prototype = {
156
+ SPRING_CONSTANT: 0.03,
157
+ SPRING_FRICTION: 0.9,
158
+ WAVE_SPREAD: 0.3,
159
+ ACCELARATION_RATE: 0.01,
160
+ init() {
161
+ this.initHeight = this.renderer.height * this.renderer.INIT_HEIGHT_RATE
162
+ this.height = this.initHeight
163
+ this.fy = 0
164
+ this.force = { previous: 0, next: 0 }
165
+ },
166
+ setPreviousPoint(previous) {
167
+ this.previous = previous
168
+ },
169
+ setNextPoint(next) {
170
+ this.next = next
171
+ },
172
+ interfere(y, velocity) {
173
+ this.fy = this.renderer.height * this.ACCELARATION_RATE * (this.renderer.height - this.height - y >= 0 ? -1 : 1) * Math.abs(velocity)
174
+ },
175
+ updateSelf() {
176
+ this.fy += this.SPRING_CONSTANT * (this.initHeight - this.height)
177
+ this.fy *= this.SPRING_FRICTION
178
+ this.height += this.fy
179
+ },
180
+ updateNeighbors() {
181
+ if (this.previous)
182
+ this.force.previous = this.WAVE_SPREAD * (this.height - this.previous.height)
183
+
184
+ if (this.next)
185
+ this.force.next = this.WAVE_SPREAD * (this.height - this.next.height)
186
+ },
187
+ render(context) {
188
+ if (this.previous) {
189
+ this.previous.height += this.force.previous
190
+ this.previous.fy += this.force.previous
191
+ }
192
+ if (this.next) {
193
+ this.next.height += this.force.next
194
+ this.next.fy += this.force.next
195
+ }
196
+ context.lineTo(this.x, this.renderer.height - this.height)
197
+ },
198
+ }
199
+
200
+ var FISH = function (renderer) {
201
+ this.renderer = renderer
202
+ this.init()
203
+ }
204
+
205
+ FISH.prototype = {
206
+ GRAVITY: 0.4,
207
+ init() {
208
+ this.direction = Math.random() < 0.5
209
+ this.x = this.direction ? this.renderer.width + this.renderer.THRESHOLD : -this.renderer.THRESHOLD
210
+ this.previousY = this.y
211
+ this.vx = this.getRandomValue(4, 10) * (this.direction ? -1 : 1)
212
+ if (this.renderer.reverse) {
213
+ this.y = this.getRandomValue((this.renderer.height * 1) / 10, (this.renderer.height * 4) / 10)
214
+ this.vy = this.getRandomValue(2, 5)
215
+ this.ay = this.getRandomValue(0.05, 0.2)
216
+ }
217
+ else {
218
+ this.y = this.getRandomValue((this.renderer.height * 6) / 10, (this.renderer.height * 9) / 10)
219
+ this.vy = this.getRandomValue(-5, -2)
220
+ this.ay = this.getRandomValue(-0.2, -0.05)
221
+ }
222
+ this.isOut = false
223
+ this.theta = 0
224
+ this.phi = 0
225
+ },
226
+ getRandomValue(min, max) {
227
+ return min + (max - min) * Math.random()
228
+ },
229
+ reverseVertical() {
230
+ this.isOut = !this.isOut
231
+ this.ay *= -1
232
+ },
233
+ controlStatus() {
234
+ this.previousY = this.y
235
+ this.x += this.vx
236
+ this.y += this.vy
237
+ this.vy += this.ay
238
+ if (this.renderer.reverse) {
239
+ if (this.y > this.renderer.height * this.renderer.INIT_HEIGHT_RATE) {
240
+ this.vy -= this.GRAVITY
241
+ this.isOut = true
242
+ }
243
+ else {
244
+ if (this.isOut)
245
+ this.ay = this.getRandomValue(0.05, 0.2)
246
+
247
+ this.isOut = false
248
+ }
249
+ }
250
+ else {
251
+ if (this.y < this.renderer.height * this.renderer.INIT_HEIGHT_RATE) {
252
+ this.vy += this.GRAVITY
253
+ this.isOut = true
254
+ }
255
+ else {
256
+ if (this.isOut)
257
+ this.ay = this.getRandomValue(-0.2, -0.05)
258
+
259
+ this.isOut = false
260
+ }
261
+ }
262
+ if (!this.isOut) {
263
+ this.theta += Math.PI / 20
264
+ this.theta %= Math.PI * 2
265
+ this.phi += Math.PI / 30
266
+ this.phi %= Math.PI * 2
267
+ }
268
+ this.renderer.generateEpicenter(this.x + (this.direction ? -1 : 1) * this.renderer.THRESHOLD, this.y, this.y - this.previousY)
269
+ if ((this.vx > 0 && this.x > this.renderer.width + this.renderer.THRESHOLD) || (this.vx < 0 && this.x < -this.renderer.THRESHOLD))
270
+ this.init()
271
+ },
272
+ render(context) {
273
+ context.save()
274
+ context.translate(this.x, this.y)
275
+ context.rotate(Math.PI + Math.atan2(this.vy, this.vx))
276
+ context.scale(1, this.direction ? 1 : -1)
277
+ context.beginPath()
278
+ context.moveTo(-30, 0)
279
+ context.bezierCurveTo(-20, 15, 15, 10, 40, 0)
280
+ context.bezierCurveTo(15, -10, -20, -15, -30, 0)
281
+ context.fill()
282
+ context.save()
283
+ context.translate(40, 0)
284
+ context.scale(0.9 + 0.2 * Math.sin(this.theta), 1)
285
+ context.beginPath()
286
+ context.moveTo(0, 0)
287
+ context.quadraticCurveTo(5, 10, 20, 8)
288
+ context.quadraticCurveTo(12, 5, 10, 0)
289
+ context.quadraticCurveTo(12, -5, 20, -8)
290
+ context.quadraticCurveTo(5, -10, 0, 0)
291
+ context.fill()
292
+ context.restore()
293
+ context.save()
294
+ context.translate(-3, 0)
295
+ context.rotate((Math.PI / 3 + (Math.PI / 10) * Math.sin(this.phi)) * (this.renderer.reverse ? -1 : 1))
296
+ context.beginPath()
297
+ if (this.renderer.reverse) {
298
+ context.moveTo(5, 0)
299
+ context.bezierCurveTo(10, 10, 10, 30, 0, 40)
300
+ context.bezierCurveTo(-12, 25, -8, 10, 0, 0)
301
+ }
302
+ else {
303
+ context.moveTo(-5, 0)
304
+ context.bezierCurveTo(-10, -10, -10, -30, 0, -40)
305
+ context.bezierCurveTo(12, -25, 8, -10, 0, 0)
306
+ }
307
+ context.closePath()
308
+ context.fill()
309
+ context.restore()
310
+ context.restore()
311
+ this.controlStatus(context)
312
+ },
313
+ }
314
+
315
+ export { RENDERER }
@@ -0,0 +1,11 @@
1
+ import { toggleDark, useThemeConfig } from 'valaxy'
2
+ import { useLocalStorage } from '@vueuse/core'
3
+
4
+ export function setupDefaultDark() {
5
+ const theme = useThemeConfig()
6
+ const local = useLocalStorage('--hairy-mode', '')
7
+ if (theme.value.mode && !local.value) {
8
+ local.value = theme.value.mode
9
+ toggleDark()
10
+ }
11
+ }
package/images.json CHANGED
@@ -1,101 +1,140 @@
1
1
  [
2
- "https://tva2.sinaimg.cn/large/6833939bly1giciryrr3rj20zk0m8nhk.jpg",
3
- "https://tva2.sinaimg.cn/large/6833939bly1gicis081o9j20zk0m8dmr.jpg",
4
- "https://tva2.sinaimg.cn/large/6833939bly1gicis3attqj20zk0m8k7l.jpg",
5
- "https://tva2.sinaimg.cn/large/6833939bly1giciszlczyj20zk0m816d.jpg",
6
- "https://tva2.sinaimg.cn/large/6833939bly1gicit31ffoj20zk0m8naf.jpg",
7
- "https://tva2.sinaimg.cn/large/6833939bly1gicit4jrvuj20zk0m8785.jpg",
8
- "https://tva2.sinaimg.cn/large/6833939bly1gicitcxhpij20zk0m8hdt.jpg",
9
- "https://tva2.sinaimg.cn/large/6833939bly1gicitf0kl1j20zk0m87fe.jpg",
10
- "https://tva2.sinaimg.cn/large/6833939bly1gicitht3xtj20zk0m8k5v.jpg",
11
- "https://tva2.sinaimg.cn/large/6833939bly1gicitspjpbj20zk0m81ky.jpg",
12
- "https://tva2.sinaimg.cn/large/6833939bly1gicitzannuj20zk0m8b29.jpg",
13
- "https://tva2.sinaimg.cn/large/6833939bly1giciub8ja1j20zk0m81ky.jpg",
14
- "https://tva2.sinaimg.cn/large/6833939bly1giciuja1j1j20zk0m8kjl.jpg",
15
- "https://tva2.sinaimg.cn/large/6833939bly1giciukx8a7j20zk0m8aio.jpg",
16
- "https://tva2.sinaimg.cn/large/6833939bly1giciundwu5j20zk0m8n9e.jpg",
17
- "https://tva2.sinaimg.cn/large/6833939bly1giciusoyjnj219g0u0x56.jpg",
18
- "https://tva2.sinaimg.cn/large/6833939bly1giciuv0socj20zk0m8qes.jpg",
19
- "https://tva2.sinaimg.cn/large/6833939bly1gicivghyooj20zk0m8dir.jpg",
20
- "https://tva2.sinaimg.cn/large/6833939bly1giclfb3vzhj20zk0m8wny.jpg",
21
- "https://tva2.sinaimg.cn/large/6833939bly1giclfdu6exj20zk0m87hw.jpg",
22
- "https://tva2.sinaimg.cn/large/6833939bly1giclffsa1cj20zk0m811l.jpg",
23
- "https://tva2.sinaimg.cn/large/6833939bly1giclflwv2aj20zk0m84qp.jpg",
24
- "https://tva2.sinaimg.cn/large/6833939bly1giclfw2t96j20zk0m8x6p.jpg",
25
- "https://tva2.sinaimg.cn/large/6833939bly1giclg5ms2rj20zk0m8u0x.jpg",
26
- "https://tva2.sinaimg.cn/large/6833939bly1giclga70tsj20zk0m84mr.jpg",
27
- "https://tva2.sinaimg.cn/large/6833939bly1giclgi503lj20zk0m8hdt.jpg",
28
- "https://tva2.sinaimg.cn/large/6833939bly1giclgrvbd6j20zk0m8qv5.jpg",
29
- "https://tva2.sinaimg.cn/large/6833939bly1giclh0m9pdj20zk0m8hdt.jpg",
30
- "https://tva2.sinaimg.cn/large/6833939bly1giclh3brzpj20zk0m8ann.jpg",
31
- "https://tva2.sinaimg.cn/large/6833939bly1giclh5u05ej20zk0m87df.jpg",
32
- "https://tva2.sinaimg.cn/large/6833939bly1giclhfehz7j20zk0m8u0x.jpg",
33
- "https://tva2.sinaimg.cn/large/6833939bly1giclhnx9glj20zk0m8npd.jpg",
34
- "https://tva2.sinaimg.cn/large/6833939bly1giclhpw3lwj20zk0m8gvw.jpg",
35
- "https://tva2.sinaimg.cn/large/6833939bly1giclhtuo6nj20zk0m8ttm.jpg",
36
- "https://tva2.sinaimg.cn/large/6833939bly1gicli3sbvtj20zk0m8x6p.jpg",
37
- "https://tva2.sinaimg.cn/large/6833939bly1gicli9lfebj20zk0m84qp.jpg",
38
- "https://tva2.sinaimg.cn/large/6833939bly1gicliierfjj20zk0m8npd.jpg",
39
- "https://tva2.sinaimg.cn/large/6833939bly1giclil3m4ej20zk0m8tn8.jpg",
40
- "https://tva2.sinaimg.cn/large/6833939bly1giclimtf7dj20zk0m8qav.jpg",
41
- "https://tva2.sinaimg.cn/large/6833939bly1giclip4jbpj20zk0m87cv.jpg",
42
- "https://tva2.sinaimg.cn/large/6833939bly1gicliwyw55j20zk0m8hdt.jpg",
43
- "https://tva2.sinaimg.cn/large/6833939bly1giclize41wj20zk0m87gk.jpg",
44
- "https://tva2.sinaimg.cn/large/6833939bly1giclj61ylzj20zk0m8b29.jpg",
45
- "https://tva2.sinaimg.cn/large/6833939bly1giclj9410cj20zk0m8h12.jpg",
46
- "https://tva2.sinaimg.cn/large/6833939bly1gicljgocqbj20zk0m8e81.jpg",
47
- "https://tva2.sinaimg.cn/large/6833939bly1gicljitigmj20zk0m87fp.jpg",
48
- "https://tva2.sinaimg.cn/large/6833939bly1giclwrdwyaj20zk0m8are.jpg",
49
- "https://tva2.sinaimg.cn/large/6833939bly1giclwuom7cj20zk0m8dvn.jpg",
50
- "https://tva2.sinaimg.cn/large/6833939bly1giclx29mstj20zk0m8hdt.jpg",
51
- "https://tva2.sinaimg.cn/large/6833939bly1giclx6phq6j20zk0m8e36.jpg",
52
- "https://tva2.sinaimg.cn/large/6833939bly1giclxfdlttj20zk0m8npd.jpg",
53
- "https://tva2.sinaimg.cn/large/6833939bly1giclxp31goj20zk0m8qv5.jpg",
54
- "https://tva2.sinaimg.cn/large/6833939bly1giclxxcb6rj20zk0m8b29.jpg",
55
- "https://tva2.sinaimg.cn/large/6833939bly1gicm07ih54j20zk0m84qp.jpg",
56
- "https://tva2.sinaimg.cn/large/6833939bly1gicm0fdw5cj20zk0m8hdt.jpg",
57
- "https://tva2.sinaimg.cn/large/6833939bly1gicm0n457cj20zk0m8e81.jpg",
58
- "https://tva2.sinaimg.cn/large/6833939bly1gicmnywqgpj20zk0m8dwx.jpg",
59
- "https://tva2.sinaimg.cn/large/6833939bly1gipesng5oej20zk0m87d4.jpg",
60
- "https://tva2.sinaimg.cn/large/6833939bly1gipesrnqv3j20zk0m8ava.jpg",
61
- "https://tva2.sinaimg.cn/large/6833939bly1gipesx5fdwj20zk0m81kx.jpg",
62
- "https://tva2.sinaimg.cn/large/6833939bly1gipet4bz0yj20zk0m8e81.jpg",
63
- "https://tva2.sinaimg.cn/large/6833939bly1gipet8c1a2j20zk0m8kct.jpg",
64
- "https://tva2.sinaimg.cn/large/6833939bly1gipetfk5zwj20zk0m8e81.jpg",
65
- "https://tva2.sinaimg.cn/large/6833939bly1gipetlbztpj20zk0m84qp.jpg",
66
- "https://tva2.sinaimg.cn/large/6833939bly1gipetv6p75j20zk0m8x6p.jpg",
67
- "https://tva2.sinaimg.cn/large/6833939bly1gipeu1usa7j20zk0m8b29.jpg",
68
- "https://tva2.sinaimg.cn/large/6833939bly1gipeu7txpzj20zk0m81kx.jpg",
69
- "https://tva2.sinaimg.cn/large/6833939bly1gipeubcbajj20zk0m8h1h.jpg",
70
- "https://tva2.sinaimg.cn/large/6833939bly1gipeudstjqj20zk0m8k3r.jpg",
71
- "https://tva2.sinaimg.cn/large/6833939bly1gipeuibk9fj20zk0m8ay2.jpg",
72
- "https://tva2.sinaimg.cn/large/6833939bly1gipeun65urj20zk0m81ii.jpg",
73
- "https://tva2.sinaimg.cn/large/6833939bly1gipeuv80yoj20zk0m8kjl.jpg",
74
- "https://tva2.sinaimg.cn/large/6833939bly1gipev1x5e4j20zk0m8b29.jpg",
75
- "https://tva2.sinaimg.cn/large/6833939bly1gipevarprfj20zk0m8npd.jpg",
76
- "https://tva2.sinaimg.cn/large/6833939bly1gipevgoki5j20zk0m84qp.jpg",
77
- "https://tva2.sinaimg.cn/large/6833939bly1gipevo9j1jj20zk0m8e81.jpg",
78
- "https://tva2.sinaimg.cn/large/6833939bly1gipevuctzzj20zk0m84qp.jpg",
79
- "https://tva2.sinaimg.cn/large/6833939bly1gipew28b65j20zk0m8hdt.jpg",
80
- "https://tva2.sinaimg.cn/large/6833939bly1gipew8gmvyj20zk0m87wh.jpg",
81
- "https://tva2.sinaimg.cn/large/6833939bly1gipewf5l51j20zk0m8b29.jpg",
82
- "https://tva2.sinaimg.cn/large/6833939bly1gipewkhf1zj20zk0m81kx.jpg",
83
- "https://tva2.sinaimg.cn/large/6833939bly1gipewr8iypj20zk0m8b29.jpg",
84
- "https://tva2.sinaimg.cn/large/6833939bly1gipex2cdtbj20zk0m8x6p.jpg",
85
- "https://tva2.sinaimg.cn/large/6833939bly1gipexbei4hj20zk0m8npd.jpg",
86
- "https://tva2.sinaimg.cn/large/6833939bly1gipexe4oykj20zk0m87ji.jpg",
87
- "https://tva2.sinaimg.cn/large/6833939bly1gipexj2jgzj20zk0m8b09.jpg",
88
- "https://tva2.sinaimg.cn/large/6833939bly1gipexoj0moj20zk0m8kgu.jpg",
89
- "https://tva2.sinaimg.cn/large/6833939bly1gipexw3o58j20zk0m8e81.jpg",
90
- "https://tva2.sinaimg.cn/large/6833939bly1gipey0a334j20zk0m8qpt.jpg",
91
- "https://tva2.sinaimg.cn/large/6833939bly1gipey84bjtj20zk0m8hdt.jpg",
92
- "https://tva2.sinaimg.cn/large/6833939bly1gipeybxm1pj20zk0m8niv.jpg",
93
- "https://tva2.sinaimg.cn/large/6833939bly1gipeyhsblkj20zk0m81kx.jpg",
94
- "https://tva2.sinaimg.cn/large/6833939bly1gipeyonbf9j20zk0m8e81.jpg",
95
- "https://tva2.sinaimg.cn/large/6833939bly1gipeyvx1d4j20zk0m8hdt.jpg",
96
- "https://tva2.sinaimg.cn/large/6833939bly1giph47e9vtj20zk0m8x6l.jpg",
97
- "https://tva2.sinaimg.cn/large/6833939bly1giph4baakhj20zk0m8h5q.jpg",
98
- "https://tva2.sinaimg.cn/large/6833939bly1giph4fomxoj20zk0m8axp.jpg",
99
- "https://tva2.sinaimg.cn/large/6833939bly1giph4lm9i7j20zk0m84qp.jpg",
100
- "https://tva2.sinaimg.cn/large/6833939bly1giph4wqtg4j20zk0m8x6p.jpg"
2
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/137081/6/32144/131304/63d630ecF4056dd1f/f65a2c5dc579d5c4.jpg",
3
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/112125/10/33225/345384/63d630eeF534b00c2/d95c811c46323c61.jpg",
4
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/177545/15/30796/140361/63d630efF51f83691/bdd4ff11552fc95a.jpg",
5
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/110202/16/30578/115437/63d630f1Fdcb4e8d1/83462ab45af94fe6.jpg",
6
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/141569/15/33680/196645/63d630c0F3d56e1cc/98ed00b92c988f22.jpg",
7
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/143703/38/33282/167246/63d630f3Fdfcd2642/8d208c19ece2f479.jpg",
8
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/203477/10/25784/173212/63d630f5Facf85677/9f6e0369dbe6a344.jpg",
9
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/180331/38/32597/183715/63d630c3F39552e5c/be907d046968b028.jpg",
10
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/94429/2/18730/350208/63d630f9Fa6a91c18/8edf277d03664a4a.jpg",
11
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/103018/7/34936/296122/63d630faFdf3b17f3/bdb64b8a0fc69a0a.jpg",
12
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/213091/31/25283/254789/63d630fbF1c7fc35e/f72df0d247f8b955.jpg",
13
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/136777/25/29797/249372/63d630fbFfd04bf5b/25235c83e49f09bd.jpg",
14
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/100025/21/21017/182015/63d630fdF8af8169a/679c35f69b4cbb6e.jpg",
15
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/135865/38/32964/447266/63d63101Fadabb4ae/17f984d47fba9654.jpg",
16
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/30624/34/20218/463869/63d63102Fad339ab8/939659289eae77cc.jpg",
17
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/87262/4/32298/166868/63d63104Fca7a3758/d8b56409b63f32b4.jpg",
18
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/177531/9/32618/276801/63d63104F712da8d4/8efbfff374052847.jpg",
19
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/95575/31/35028/197997/63d63108Fb2129028/a9010cd7a61ecd1a.jpg",
20
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/178613/15/32017/369138/63d63109F2668452f/8e97db8106def81d.jpg",
21
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/31147/26/19390/450033/63d63109Ff36c07c5/92e4a4d30ab91755.jpg",
22
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/207893/31/29907/306658/63d6310cFf925c7ae/74e246cbc5cfe7b9.jpg",
23
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/103502/31/35169/95092/63d63118F2f8b7277/da5cbf428a0b68ad.jpg",
24
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/8435/17/21121/2898762/63d6311dFc7a6234d/cdbe0f15ac6381a7.jpg",
25
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/178446/11/31939/348631/63d6311dF25b05f69/249cdbe88aa55c7d.jpg",
26
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/171459/10/33939/131747/63d63122F4225306e/68653dd4e6c3c295.jpg",
27
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/221336/33/22547/267537/63d6312aFa2fc2fbd/ce8258acd7177735.jpg",
28
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/140478/21/33124/238675/63d6312dF71c8db85/da6a8540407bba2e.jpg",
29
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/216738/1/21200/213086/63d6312fF6d4b59c8/80925395c7e58092.jpg",
30
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/115736/33/32020/361797/63d63131Fb0cd1d92/3bb9d698753905d2.jpg",
31
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/195283/5/32473/190475/63d63133Ff58c38fb/36ca70d73bb89fa5.jpg",
32
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/100124/17/35426/564887/63d6313dF6224b876/b51645eb6ac8dd24.jpg",
33
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/144117/25/33253/488978/63d63141F370678bf/f480d3f67017d970.jpg",
34
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/216316/40/22527/240219/63d63144Ff5b910ce/1227cfe3192020d1.jpg",
35
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/184137/24/33505/355673/63d63144F02872536/d23083b6955ed632.jpg",
36
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/95277/31/25860/460561/63d63146F7112a2fd/0419f98252fc6d4d.jpg",
37
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/214759/36/24863/304860/63d63148Fce26a282/aa280da693b6d42e.jpg",
38
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/102230/19/35726/196893/63d6314bF16b72c49/832529fc37d3b399.jpg",
39
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/101964/16/36940/475813/63d6314bFd8319028/d28b976b21bea527.jpg",
40
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/53889/7/22592/379046/63d63150Fbe0021f2/93eedcd0592ba3a2.jpg",
41
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/18622/28/20766/381866/63d63159F8c902c00/72ced9017b23803f.jpg",
42
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/56344/18/23409/194552/63d6315bF395b3a60/25c345816c731663.jpg",
43
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/192428/14/31797/388629/63d63159F0438f713/fd8a097affca1362.jpg",
44
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/144207/39/34001/278311/63d63165Fff7f7fe1/d288f807b8dd6dfb.jpg",
45
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/171327/2/34329/440391/63d63167F2500fadb/079774bd2aa13d80.jpg",
46
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/177053/30/32761/254046/63d6316cF351ae2ba/74500a4a8f42b1e9.jpg",
47
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/178782/20/31686/306533/63d6316dFc4c3ef51/4e9f3db915b95793.jpg",
48
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/144120/19/33118/167278/63d63171F83ce1a3c/bdf10018c4acbfa8.jpg",
49
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/117817/17/31499/301424/63d63174Fb6ed6ab2/88c6c5557baeaa6c.jpg",
50
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/124486/5/30855/226028/63d63177Fcec558c5/b53f1e6939d9c299.jpg",
51
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/171264/28/34368/105227/63d63178F6abfad92/edbce22640c58dd0.jpg",
52
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/93286/29/32310/155501/63d63186Fc8f42230/08b241071af88e15.jpg",
53
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/84962/28/34296/225202/63d63187Fa5353778/a2d88bb15e565f01.jpg",
54
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/190936/28/31626/223687/63d6318bF3252e992/f9116232f81b9d25.jpg",
55
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/105019/26/36982/290544/63d63194F09cf7ae8/51be1a7267fdf125.jpg",
56
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/102406/40/35060/377162/63d63194Ffc825c5f/92b4bac4b717d799.jpg",
57
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/83545/25/25395/292135/63d631a0F3ccca12f/320385579d5c09e0.jpg",
58
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/133544/31/33228/405867/63d631a4F4c1c44a1/cc4c97ce4895c947.jpg",
59
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/176244/39/33205/2130498/63d631a6Fe8b21ee6/c228158d853ff012.jpg",
60
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/95930/22/33237/2459672/63d631a7F8fb0cd28/62ccd010855f3731.jpg",
61
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/57616/23/22434/215169/63d631adFb5a9b41d/c10dcf1c803103d2.jpg",
62
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/106599/7/34873/2546471/63d631b0F9a0634b3/364845cf8f8b9e34.jpg",
63
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/47733/11/23334/440316/63d631b1Fd63a27d9/c0e3315495f670c5.jpg",
64
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/139076/12/33472/485700/63d631b4F9195d180/f2c91cee9240a025.jpg",
65
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/141997/16/32664/154238/63d631b6Fb01b05e6/9c2091edc73c294b.jpg",
66
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/190496/8/33263/2119880/63d631beF08e0478e/715df13eb87dcbc8.jpg",
67
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/108491/29/34762/247460/63d631f0Fead68c70/f6454aa7508e0afd.jpg",
68
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/130126/4/29287/514354/63d631f3Fa8f1b678/0fdee892fb26a36a.jpg",
69
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/130727/27/33953/194269/63d63203F6ef65154/72c10d061e094b27.jpg",
70
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/206923/24/29029/565655/63d63225F1cd44780/e81db807b90bc0d2.jpg",
71
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/93911/29/35130/364465/63d63228F149e502f/198e7607a0c32231.jpg",
72
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/194800/8/32278/454711/63d6322cFfce3080a/0866beff8c22bf52.jpg",
73
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/168294/14/31238/485591/63d63232F31314925/6ae966fb91b71f20.jpg",
74
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/48739/8/17470/384491/63d6323aF05d09be1/7211fcfc5d30a339.jpg",
75
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/216691/22/24962/289366/63d63241Fbe97bbbf/53f914ef966b561d.jpg",
76
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/158542/19/33851/516568/63d63263F9a05db04/c43657d2a9f08e11.jpg",
77
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/82893/24/18825/404194/63d63268F1e931037/c2b261add68f9a54.jpg",
78
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/91270/29/24834/163994/63d6326aF4eec1ea8/909d92b1d7359ddb.jpg",
79
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/48115/34/21154/367058/63d63272F158e1e77/1a90eb4a18c42bc2.jpg",
80
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/94232/7/35144/427062/63d6327aFe7b35ca8/9ac16f753ca72639.jpg",
81
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/110395/5/38088/283405/63d6327bF877df0a1/3e5b7a93f219e814.jpg",
82
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/81262/35/23270/169074/63d6328bFb88d86e9/809193f87b72a147.jpg",
83
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/40227/25/21100/315068/63d6328eF63650ded/7c17d61c88c5a3fb.jpg",
84
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/143835/1/33328/146757/63d63290Ff568864d/c991e63bb1ee994f.jpg",
85
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/137735/19/33610/445325/63d63297F8c302d0e/6abf6983b7687c9f.jpg",
86
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/195972/28/30513/283433/63d632a0Fa4e72fce/f2fa22ba4d90547c.jpg",
87
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/70008/16/21075/258632/63d632a2F3def9b47/613b33a6343bfbb1.jpg",
88
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/216786/26/22396/303449/63d632b6F1cfac510/6380abcdfc377862.jpg",
89
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/5489/1/18287/127543/63d632c8F00bcfbeb/21f3b039f7327409.jpg",
90
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/62522/20/23627/303501/63d63303Fd022ab51/bf1871dc802ad56e.jpg",
91
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/93876/26/34285/234202/63d6330cFbb000e7b/7d990e45cd5a7118.jpg",
92
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/138706/5/32763/336531/63d6330cFe5fb889f/59f56caaab9f26fa.jpg",
93
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/122681/20/29922/235612/63d63392F6c6e22c3/feccbfa0a76c6a17.jpg",
94
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/93827/11/24351/332690/63d63398Fa39e1ab0/d46c59c331d5f64b.jpg",
95
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/205600/3/29947/313889/63d6339aFf62e4fe6/d60864f5921d69b6.jpg",
96
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/82038/39/23532/180683/63d6339aF865113f0/aa0a70fd7c1d4683.jpg",
97
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/138493/27/33408/378575/63d633bcF2942da95/2a9745878385ebaf.jpg",
98
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/55794/11/22786/254123/63d633cbF3e4091dc/06a7adaea6df6be1.jpg",
99
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/9407/30/20614/185081/63d634b4Face6f1ef/2169033859883e2e.jpg",
100
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/161915/17/36755/2172028/63d634bbF46c3c491/f303c35b729ca87b.jpg",
101
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/68856/25/23176/538343/63d634bcF11333ad0/3386a9b7e8f8204e.jpg",
102
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/90960/13/35230/461943/63d634cdF6449d791/942a44d4bcca2b4b.jpg",
103
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/213694/33/25135/304380/63d634e1F77ef2a5d/ed7b9214fc42da10.jpg",
104
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/192437/21/32771/271782/63d634ecF0384cacc/d3fc0700bdecb2b8.jpg",
105
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/219981/30/22137/92097/63d634f5F00c36a1a/5f87fd976a780c47.jpg",
106
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/6228/20/17937/222254/63d634f6F1f2b7cf8/0c6c5e14331c972b.jpg",
107
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/199001/9/30289/133549/63d63500Ffd04aa07/fd16989e2c977ce8.jpg",
108
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/78869/20/23675/209993/63d63513F941e5f94/73240f00c335ff03.jpg",
109
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/6137/29/19068/288540/63d63529F834dd2ba/228dfdee4d5a53c7.jpg",
110
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/111440/23/35266/157289/63d63533F5207e37a/6f27a36145644098.jpg",
111
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/171407/25/34088/347076/63d6353bF89a117c7/f02ab4819085dc38.jpg",
112
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/2570/24/17450/474133/63d63541F09dacedb/72d2d74c113aba88.jpg",
113
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/127964/1/31838/375086/63d63549F45d6c144/a71498a8f17b686e.jpg",
114
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/119953/20/33856/381359/63d6354cF21c35bee/87dae7e855c48293.jpg",
115
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/187063/33/32480/203938/63d6354eF3ec77031/574d9b260749ac82.jpg",
116
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/120991/27/27778/110028/63d63558Ffd2bf474/599b3f418f1f9869.jpg",
117
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/148544/32/32848/222688/63d6355bF3eb37b33/324215fa4c3cd5d2.jpg",
118
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/129163/12/29836/535427/63d63562Fbd165c3c/bc0fecb517cac741.jpg",
119
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/208051/39/29158/268176/63d63563F89a06102/8993fe282edc9a11.jpg",
120
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/205682/8/30240/543639/63d6356cFf2e0b983/4a19d41068386a4d.jpg",
121
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/54416/26/22557/419996/63d63570F96081174/2dbd7f53da618f6c.jpg",
122
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/165473/26/28299/395435/63d6357fF10e9733b/3f403568171e0f0c.jpg",
123
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/172755/30/33435/675653/63d6358fF3a7b5d32/f689019ae51d8c2c.jpg",
124
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/109222/29/33684/195123/63d635a3Fc758c94d/835ae85b8591c542.jpg",
125
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/46489/39/17699/237173/63d635a2F241250f7/90c034834b3bf821.jpg",
126
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/91278/27/35035/411529/63d635aaF07f0526e/4ee804452969eb87.jpg",
127
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/54722/6/22554/223464/63d635afF9f871219/40acaed1c76b2e91.jpg",
128
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/168914/2/33960/167277/63d635b1F10fc7d28/2feae606d5b0f7e9.jpg",
129
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/223783/31/16071/155009/63d635b2Fe7cb3301/db2102e79161bc4a.jpg",
130
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/216201/15/22747/375519/63d635b6Fe37f101e/c5037d919d7008d4.jpg",
131
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/53406/33/23036/201082/63d635b9F3553bfcb/3eeb46ce2d8977ad.jpg",
132
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/204857/27/27754/557331/63d635e0Ff94354f4/134e47b3d340dea2.jpg",
133
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/6410/1/27446/264217/63d635fbF8239885a/7712375cc3a09a70.jpg",
134
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/119307/9/34230/318623/63d635fdF1219981c/5d8794ce077b793e.jpg",
135
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/114227/2/33593/313516/63d63603F0374979a/dbc7a01f85f4bfad.jpg",
136
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/162732/17/33827/290377/63d63657F5b0f245c/3e3c8ba89398d662.jpg",
137
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/24885/21/20530/309900/63d63659Ffab5dc33/6495d0c20870a202.jpg",
138
+ "https://kjimg10.360buyimg.com/ott/jfs/t1/71590/15/23888/589990/63d6365cFbd69f9de/94a60150a6e628d3.jpg"
101
139
  ]
140
+
package/index.d.ts CHANGED
@@ -2,6 +2,7 @@ import type { ViteSSGContext } from 'vite-ssg'
2
2
 
3
3
  export interface HairyTheme {
4
4
  nav?: NavItem[];
5
+ mode?: 'dark'
5
6
  home?: {
6
7
  headline?: string
7
8
  title?: string
package/layouts/hairy.vue CHANGED
@@ -3,6 +3,7 @@ import { computed, onMounted } from 'vue'
3
3
  import { useRoute } from 'vue-router'
4
4
  import { pageviewCount } from '@waline/client'
5
5
  import { useConfig } from 'valaxy'
6
+ import { setupDefaultDark } from '../hooks/setupDefaultDark'
6
7
 
7
8
  const route = useRoute()
8
9
  const meta = computed(() => route.meta)
@@ -15,6 +16,7 @@ onMounted(() => {
15
16
  path: window.location.pathname,
16
17
  })
17
18
  })
19
+ setupDefaultDark()
18
20
  </script>
19
21
 
20
22
  <template>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "valaxy-theme-hairy",
3
- "version": "0.0.17",
3
+ "version": "0.1.1",
4
4
  "packageManager": "pnpm@7.5.0",
5
5
  "author": {
6
6
  "email": "wwu710632@gmail.com",
@@ -31,6 +31,8 @@
31
31
  "defu": "^6.0.0",
32
32
  "element-plus": "^2.2.10",
33
33
  "furigana-markdown-it": "^1.0.3",
34
+ "markdown-it-attrs": "^4.1.4",
35
+ "markdown-it-bracketed-spans": "^1.0.1",
34
36
  "markdown-toc": "^1.2.0",
35
37
  "reading-time": "^1.5.0",
36
38
  "swiper": "^8.3.1",