| 1 2 3 4 5 6 7 8 9 10 11 12 13 | /** * 媒体查询边界条件 * @Author 瞿龙俊 - qulongjun@shine.design * @Date 2019/3/16 上午8:51 */ import {breakpoints} from '../_variables'; /** 媒体名称 */ export const MEDIA = [Object.keys(breakpoints)]; /** 媒体刻度 */ export const SCALE = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]; |