29 lines
945 B
TypeScript
29 lines
945 B
TypeScript
import bg1 from '~/assets/image/hg/pc/bg1.jpg'
|
|
import bg1W from '~/assets/image/hg/pc/bg1.webp'
|
|
import bg2 from '~/assets/image/hg/pc/bg2.jpg'
|
|
import bg2W from '~/assets/image/hg/pc/bg2.webp'
|
|
import bg3 from '~/assets/image/hg/pc/bg3.jpg'
|
|
import bg3W from '~/assets/image/hg/pc/bg3.webp'
|
|
import bg4 from '~/assets/image/hg/pc/bg4.jpg'
|
|
import bg4W from '~/assets/image/hg/pc/bg4.webp'
|
|
import bg5 from '~/assets/image/hg/pc/bg5.jpg'
|
|
import bg5W from '~/assets/image/hg/pc/bg5.webp'
|
|
import covers from '~/assets/image/hg/pc/covers.png'
|
|
import coversW from '~/assets/image/hg/pc/covers.webp'
|
|
|
|
export interface PcVariant {
|
|
bg: string
|
|
bgW: string
|
|
}
|
|
|
|
export const PC_VARIANTS: PcVariant[] = [
|
|
{ bg: bg1, bgW: bg1W },
|
|
{ bg: bg2, bgW: bg2W },
|
|
{ bg: bg3, bgW: bg3W },
|
|
{ bg: bg4, bgW: bg4W },
|
|
{ bg: bg5, bgW: bg5W },
|
|
]
|
|
|
|
// 右下角封面条:5 页共用同一张,不随轮播切换
|
|
export const PC_COVERS = { src: covers, srcW: coversW }
|