2023-01-24 16:29:33 +08:00
|
|
|
export const appName = 'R3PLAY'
|
2023-01-07 14:39:03 +08:00
|
|
|
|
2022-06-12 15:29:14 +08:00
|
|
|
// 动画曲线
|
2022-05-29 17:53:27 +08:00
|
|
|
export const ease: [number, number, number, number] = [0.4, 0, 0.2, 1]
|
2022-06-12 15:29:14 +08:00
|
|
|
|
|
|
|
// 屏幕断点
|
2022-06-11 00:19:07 +08:00
|
|
|
export const breakpoint = {
|
|
|
|
sm: '@media (min-width: 640px)',
|
|
|
|
md: '@media (min-width: 768px)',
|
|
|
|
lg: '@media (min-width: 1024px)',
|
|
|
|
xl: '@media (min-width: 1280px)',
|
|
|
|
'2xl': '@media (min-width: 1536px)',
|
|
|
|
}
|
2022-06-12 15:29:14 +08:00
|
|
|
|
2022-08-03 23:48:39 +08:00
|
|
|
export const titleBarHeight = 32 // 桌面端标题栏高度 (px)
|
2022-06-12 15:29:14 +08:00
|
|
|
export const topbarHeight = 132 // 桌面端顶栏高度 (px)
|
|
|
|
export const playerWidth = 318 // 桌面端播放器宽度 (px)
|