defaultData.ts 553 Bytes
Newer Older
liujiangnan's avatar
liujiangnan committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
export const defaultData = {
  bookPages: [{
    pageIdx: 1, // 第几页
    startAudio: 'http://xxxx.mp3', // 页码引导音频
    startBg: 'http://xxxx.jpg', // 页码背景图片
    scanImg: 'http://xxxx.jpg', // 页码扫描图片

    bgItem: {
      guidAudio: 'http://xxxx.mp3', // 热区引导音频
      guidBg: 'http://xxxx.jpg', // 热区背景图片
    },
    hotZoneArr: [{ // 数组顺序
      rect: { x: 0, y: 0, width: 100, height: 100 },
    }, { // 数组顺序
      rect: { x: 0, y: 0, width: 100, height: 100 },
    }]
  }]
}