pages.js 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242
  1. var _ACTIVE_PAGES={
  2. "0":[ // début de la première double page, numéro de la double page
  3. {"active":true}, // page de gauche, inactive
  4. { // début de page de droite
  5. "page":0, // numéro de la page --COUVERTURE ROUGE--
  6. "bg":"00_1couv.jpeg", // image a afficher pour cette page
  7. "overlays":[ // debut liste des zones actives
  8. { // debut zone active : dada 1
  9. "x":200, // position x coin supérieur gauche zone active (entre 0 et 227 mm)
  10. "y":0, // position y coin supérieur gauche zone active (entre 0 et 207 mm)
  11. "w":28, // largeur zone active
  12. "h":30, // hauteur zone active
  13. "over":"dada1.svg", // image affichée au survol
  14. "link":7, // click go to page
  15. "repere_x":40, // position x de l'indicateur de survol
  16. "repere_y":56, // position y de l'indicateur de survol
  17. "repere":"mon.svg", // svg a afficher comme indicateur de survol au click sur page
  18. "debug":false // true: zone visible, true: zone invisible,
  19. }, // fin zone active 1
  20. { // dada 2
  21. "x":200,
  22. "y":29,
  23. "w":28,
  24. "h":30,
  25. "over":"dada2.svg",
  26. "debug":false
  27. },
  28. { // dada 3
  29. "x":200,
  30. "y":58,
  31. "w":28,
  32. "h":30,
  33. "over":"dada3.svg",
  34. "debug":false
  35. },
  36. { // dada 4 & 5
  37. "x":200,
  38. "y":87,
  39. "w":28,
  40. "h":30,
  41. "over":"dada4_5.svg",
  42. "debug":false
  43. },
  44. { // dada 6
  45. "x":200,
  46. "y":116,
  47. "w":28,
  48. "h":30,
  49. "over":"dada6.svg",
  50. "debug":false
  51. },
  52. { // dada 7
  53. "x":200,
  54. "y":145,
  55. "w":28,
  56. "h":30,
  57. "over":"dada7.svg",
  58. "debug":false
  59. },
  60. ] // fin liste des zones interactives (overlays)
  61. } // fin de la page de droite
  62. ], // fin de la double page
  63. "1":[
  64. {
  65. "page":1,
  66. "bg":"00_1couvV.jpeg",
  67. "overlays":[
  68. { // TEST MIRE Rouge 5 X 5
  69. "x":100,
  70. "y":100,
  71. "w":10,
  72. "h":10,
  73. "over":"mire_rn.svg",
  74. "debug":true
  75. },
  76. { // TEST MIRE Rouge 5 X 5
  77. "x":100,
  78. "y":109,
  79. "w":10,
  80. "h":11,
  81. "over":"mire_r.svg",
  82. "debug":false
  83. },
  84. { // TEST MIRE Verte
  85. "x":109,
  86. "y":100,
  87. "w":11,
  88. "h":10,
  89. "over":"mire_v.svg",
  90. "debug":false
  91. },
  92. { // TEST MIRE Verte 10 x 10
  93. "x":109,
  94. "y":109,
  95. "w":11,
  96. "h":11,
  97. "over":"mire_vn.svg",
  98. "debug":false
  99. },
  100. ]
  101. },
  102. {
  103. "page":2, //__ AN AN __//
  104. "bg":"01_anan.jpeg",
  105. "overlays":[
  106. { // an outline en haut
  107. "x":58,
  108. "y":10,
  109. "w":110,
  110. "h":100,
  111. "over":"an_gris_final.svg",
  112. "debug":false
  113. },
  114. { // a bas
  115. "x":50,
  116. "y":106,
  117. "w":65,
  118. "h":100,
  119. "over":"an_ai_kerning.svg",
  120. "debug":false
  121. },
  122. { // n bas
  123. "x":112,
  124. "y":106,
  125. "w":70,
  126. "h":100,
  127. "over":"an_gm_kerning.svg",
  128. "debug":false
  129. },
  130. { // an anna blume (couverture)
  131. "x":180,
  132. "y":0,
  133. "w":50,
  134. "h":50,
  135. "over":"anna_blume_couv.svg",
  136. "debug":false
  137. },
  138. { // anna blume / texte allemand
  139. "x":180,
  140. "y":48,
  141. "w":50,
  142. "h":50,
  143. "over":"anna_dada+T.svg",
  144. "debug":false
  145. },
  146. { // anna blume / anglais
  147. "x":180,
  148. "y":96,
  149. "w":50,
  150. "h":50,
  151. "over":"anna_dada+Ten.svg",
  152. "debug":false
  153. },
  154. { // anna blume / français
  155. "x":180,
  156. "y":144,
  157. "w":50,
  158. "h":50,
  159. "over":"anna_dada+Tfr.svg",
  160. "debug":false
  161. }
  162. ] // fin liste zones actives
  163. }
  164. ],
  165. "2":[
  166. {
  167. "page":3,
  168. "bg":"02_TH.jpeg",
  169. "overlays":[
  170. { // mesure T horizontale
  171. "x":2,
  172. "y":101,
  173. "w":105,
  174. "h":10,
  175. "over":"02_TH_Hg+.svg",
  176. "debug":false
  177. },
  178. { // mesure H horizontale
  179. "x":107,
  180. "y":154,
  181. "w":91,
  182. "h":10,
  183. "over":"02_TH_Hd+.svg",
  184. "debug":false
  185. },
  186. { // mesure T horizontal gauche
  187. "x":45,
  188. "y":110,
  189. "w":10,
  190. "h":97,
  191. "over":"02_TH_Vg.svg",
  192. "debug":false
  193. },
  194. { // mesure T horizontal centre
  195. "x":98,
  196. "y":110,
  197. "w":10,
  198. "h":97,
  199. "over":"02_TH_Vc.svg",
  200. "debug":false
  201. },
  202. { // mesure T horizontal droite
  203. "x":197,
  204. "y":102,
  205. "w":10,
  206. "h":105,
  207. "over":"02_TH_Vd.svg",
  208. "debug":false
  209. },
  210. { // 1- METHOD- / EC-
  211. "x":210,
  212. "y":0,
  213. "w":18,
  214. "h":21,
  215. "over":"03_method.svg",
  216. "debug":false
  217. },
  218. { // 2- ETH- / ABNORMAL PSYCH-
  219. "x":210,
  220. "y":20,
  221. "w":18,
  222. "h":21,
  223. "over":"03_eth.svg",
  224. "debug":false
  225. },
  226. { // 3- PHYL- / SYNEC-
  227. "x":210,
  228. "y":40,
  229. "w":18,
  230. "h":21,
  231. "over":"03_phil.svg",
  232. "debug":false
  233. },
  234. { // 4- PHYTOSOCIO- / MORPH-
  235. "x":210,
  236. "y":60,
  237. "w":18,
  238. "h":21,
  239. "over":"03_phytosoci.svg",
  240. "debug":false
  241. },
  242. { // 5- MOLECULAR BI- / NEUROPHYSI-
  243. "x":210,
  244. "y":80,
  245. "w":18,
  246. "h":21,
  247. "over":"03_bi.svg",
  248. "debug":false
  249. },
  250. { // 6_ PATH- / GASTROENTER-
  251. "x":210,
  252. "y":100,
  253. "w":18,
  254. "h":21,
  255. "over":"03_path.svg",
  256. "debug":false
  257. },
  258. { // 7- URO / PHARMAC-
  259. "x":210,
  260. "y":120,
  261. "w":18,
  262. "h":21,
  263. "over":"03_uro.svg",
  264. "debug":false
  265. },
  266. { // 8- PHON- / OT-
  267. "x":210,
  268. "y":140,
  269. "w":18,
  270. "h":21,
  271. "over":"03_pharmac.svg",
  272. "debug":false
  273. },
  274. { // 9- PHON- / PHYSI-
  275. "x":210,
  276. "y":160,
  277. "w":18,
  278. "h":21,
  279. "over":"03_paleont.svg",
  280. "debug":false
  281. },
  282. { // PHON- / PHYSI-
  283. "x":210,
  284. "y":180,
  285. "w":18,
  286. "h":21,
  287. "over":"learning.svg",
  288. "debug":false
  289. }
  290. ]
  291. },
  292. {
  293. "page":4,
  294. "bg":"03_ologyOf.jpeg",
  295. "overlays":[
  296. {
  297. "x":125,
  298. "y":0,
  299. "w":20,
  300. "h":207,
  301. "over":"04_ology_of.svg", //+ology1.svg ? déjà fait ?
  302. "debug":false
  303. }
  304. ]
  305. }
  306. ],
  307. "3":[
  308. {
  309. "page":5,
  310. "bg":"04_chance.jpeg",
  311. "overlays":[
  312. { // RA : chance operation std
  313. "x":140,
  314. "y":14,
  315. "w":10,
  316. "h":22,
  317. "over":"05_ra_operation_std.svg",
  318. "debug":false
  319. },
  320. { // RA : operation ligature
  321. "x":149,
  322. "y":14,
  323. "w":12,
  324. "h":22,
  325. "over":"05_ra_operation_lig.svg",
  326. "debug":false
  327. },
  328. { // RA : chance operation corrigé
  329. "x":145,
  330. "y":12,
  331. "w":10,
  332. "h":10,
  333. "over":"05_ra_operation_cor.svg",
  334. "debug":false
  335. },
  336. { // A : concept art
  337. "x":16,
  338. "y":111,
  339. "w":28,
  340. "h":52,
  341. "over":"05_a_art.svg",
  342. "debug":false
  343. },
  344. { // A : concept art corrigé
  345. "x":43,
  346. "y":111,
  347. "w":5,
  348. "h":52,
  349. "over":"05_a_art_cor.svg",
  350. "debug":false
  351. },
  352. { // T : art
  353. "x":62,
  354. "y":132,
  355. "w":11,
  356. "h":30,
  357. "over":"05_t_art.svg",
  358. "debug":false
  359. },
  360. { // T : chance operation
  361. "x":160,
  362. "y":14,
  363. "w":10,
  364. "h":20,
  365. "over":"05_t_operation.svg",
  366. "debug":false
  367. },
  368. { // T : chance operation corrigé
  369. "x":160,
  370. "y":5,
  371. "w":10,
  372. "h":10,
  373. "over":"05_t_operation_cor.svg",
  374. "debug":false
  375. },
  376. { // T : natural
  377. "x":44,
  378. "y":190,
  379. "w":10,
  380. "h":17,
  381. "over":"05_t_natural.svg",
  382. "debug":false
  383. },
  384. { // T : natural corrigé
  385. "x":44,
  386. "y":183,
  387. "w":10,
  388. "h":8,
  389. "over":"05_t_natural_cor.svg",
  390. "debug":false
  391. },
  392. { // T : desasters
  393. "x":172,
  394. "y":190,
  395. "w":10,
  396. "h":17,
  397. "over":"05_t_disasters.svg",
  398. "debug":false
  399. },
  400. { // T : desasters corrigé
  401. "x":172,
  402. "y":183,
  403. "w":10,
  404. "h":8,
  405. "over":"05_t_disasters_cor.svg",
  406. "debug":false
  407. },
  408. { // T : concept
  409. "x":16,
  410. "y":95,
  411. "w":35,
  412. "h":15,
  413. "over":"05_t_concept.svg",
  414. "debug":false
  415. },
  416. { // T : concept corrigé
  417. "x":50,
  418. "y":95,
  419. "w":7,
  420. "h":15,
  421. "over":"05_t_concept_cor.svg",
  422. "debug":false
  423. },
  424. ]
  425. },
  426. {
  427. "page":6,
  428. "bg":"05_Stories.jpeg",
  429. "overlays":[]
  430. }
  431. ],
  432. "4":[
  433. {
  434. "page":7,
  435. "bg":"06_byGeorge.jpeg",
  436. "overlays":[]
  437. },
  438. {
  439. "page":8,
  440. "bg":"07_Copyright.jpeg",
  441. "overlays":[]
  442. }
  443. ],
  444. "5":[ // debut de la double page 5
  445. { // debut de la page de gauche
  446. "page":9, // numéro de la page
  447. "bg":"08_Brecht.jpeg", // image de la page
  448. "overlays":[
  449. { // george brecht
  450. "x":32,
  451. "y":8,
  452. "w":112,
  453. "h":10,
  454. "over":"05_brecht.svg",
  455. "debug":false
  456. },
  457. { // music (gris 50)
  458. "x":15,
  459. "y":71,
  460. "w":105,
  461. "h":48,
  462. "over":"05_music50.svg",
  463. "debug":false
  464. },
  465. { // indeterminacy
  466. "x":120,
  467. "y":25,
  468. "w":103,
  469. "h":70,
  470. "over":"04_indeterminacy.svg",
  471. "debug":false
  472. },
  473. { // compositions
  474. "x":112,
  475. "y":132,
  476. "w":103,
  477. "h":70,
  478. "over":"05_compositions.svg",
  479. "debug":false
  480. },
  481. { // music + indeterminacy
  482. "x":120,
  483. "y":94,
  484. "w":103,
  485. "h":39,
  486. "over":"05_music_indeterminacy.svg",
  487. "debug":false
  488. },
  489. { // music + indeterminacy + compositions
  490. "x":59,
  491. "y":118,
  492. "w":54,
  493. "h":80,
  494. "over":"05_music_indeterminacy_compo.svg",
  495. "debug":false
  496. },
  497. { // brecht + music + indeterminacy + compositions
  498. "x":10,
  499. "y":118,
  500. "w":50,
  501. "h":80,
  502. "over":"05_brecht_m_i_c.svg",
  503. "debug":false
  504. }
  505. ] // fin de la liste des zones actives
  506. }, // fin de la page de gauche
  507. {"active":true} // page de droite inactive
  508. ], // fin de la double page 5
  509. "7":[
  510. {
  511. "page":13,
  512. "bg":"12_Bremer.jpeg",
  513. "overlays":[
  514. { // (claus) bremer
  515. "x":15,
  516. "y":18,
  517. "w":60,
  518. "h":10,
  519. "over":"07_bremer.svg",
  520. "debug":false
  521. },
  522. { // claus (bremer)
  523. "x":175,
  524. "y":8,
  525. "w":40,
  526. "h":10,
  527. "over":"07_bremer.svg",
  528. "debug":false
  529. },
  530. { // poetry
  531. "x":181,
  532. "y":18,
  533. "w":35,
  534. "h":108,
  535. "over":"05_poetry.svg",
  536. "debug":false
  537. },
  538. { // bremer + poetry
  539. "x":175,
  540. "y":125,
  541. "w":50,
  542. "h":110,
  543. "over":"07_bremer_poetry.svg",
  544. "debug":false
  545. },
  546. ]
  547. },
  548. {"active":true}
  549. ],
  550. "8":[
  551. {
  552. "page":15,
  553. "bg":"14_Brown.jpeg",
  554. "overlays":[
  555. { // earle brown
  556. "x":72,
  557. "y":18,
  558. "w":102,
  559. "h":10,
  560. "over":"07_brown.svg",
  561. "debug":false
  562. },
  563. { // music (gris 50)
  564. "x":46,
  565. "y":60,
  566. "w":106,
  567. "h":48,
  568. "over":"05_music50.svg",
  569. "debug":false
  570. },
  571. { // essays
  572. "x":186,
  573. "y":5,
  574. "w":35,
  575. "h":108,
  576. "over":"05_essays.svg",
  577. "debug":false
  578. },
  579. ]
  580. },
  581. {"active":true}
  582. ],
  583. "12":[
  584. {"active":true},
  585. {
  586. "page":24,
  587. "bg":"23_Byrd.jpeg",
  588. "overlays":[
  589. { // jo-seph byrd
  590. "x":10,
  591. "y":29,
  592. "w":82,
  593. "h":10,
  594. "over":"07_byrd.svg",
  595. "debug":false
  596. },
  597. { // jo-seph byrd
  598. "x":188,
  599. "y":19,
  600. "w":25,
  601. "h":10,
  602. "over":"07_byrd.svg",
  603. "debug":false
  604. },
  605. { // music (gris 50)
  606. "x":36,
  607. "y":62,
  608. "w":107,
  609. "h":48,
  610. "over":"05_music50.svg",
  611. "debug":false
  612. },
  613. { // poetry
  614. "x":142,
  615. "y":0,
  616. "w":35,
  617. "h":108,
  618. "over":"05_poetry.svg",
  619. "debug":false
  620. },
  621. { // music + poetry
  622. "x":176,
  623. "y":40,
  624. "w":40,
  625. "h":148,
  626. "over":"05_music_poetry.svg",
  627. "debug":false
  628. },
  629. ]
  630. }
  631. ],
  632. "14":[
  633. {
  634. "page":27,
  635. "bg":"26_Cage.jpeg",
  636. "overlays":[
  637. { // john cage
  638. "x":70,
  639. "y":100,
  640. "w":90,
  641. "h":10,
  642. "over":"07_cage.svg",
  643. "debug":false
  644. },
  645. ]
  646. },
  647. {"active":true}
  648. ],
  649. "15":[
  650. {
  651. "page":29,
  652. "bg":"28_deMaria.jpeg",
  653. "overlays":[
  654. { // walter de maria
  655. "x":125,
  656. "y":18,
  657. "w":90,
  658. "h":10,
  659. "over":"07_walter_de_maria.svg",
  660. "debug":false
  661. },
  662. { // walter de maria
  663. "x":18,
  664. "y":30,
  665. "w":50,
  666. "h":10,
  667. "over":"07_brown.svg",
  668. "debug":false
  669. },
  670. { // esays
  671. "x":178,
  672. "y":37,
  673. "w":35,
  674. "h":108,
  675. "over":"05_essays.svg",
  676. "debug":false
  677. },
  678. { // compositions
  679. "x":108,
  680. "y":37,
  681. "w":71,
  682. "h":103,
  683. "over":"05_compositions.svg",
  684. "debug":false
  685. },
  686. ]
  687. },
  688. {"active":true}
  689. ],
  690. "17":[
  691. {
  692. "page":33,
  693. "bg":"32_Flynt.jpeg",
  694. "overlays":[
  695. { // henry flynt
  696. "x":71,
  697. "y":49,
  698. "w":97,
  699. "h":10,
  700. "over":"07_flynt.svg",
  701. "debug":false
  702. },
  703. { // essays
  704. "x":177,
  705. "y":3,
  706. "w":35,
  707. "h":108,
  708. "over":"05_essays.svg",
  709. "debug":false
  710. },
  711. ]
  712. },
  713. {"active":true}
  714. ],
  715. "19":[
  716. {"active":true},
  717. {
  718. "page":38,
  719. "bg":"37_Ono.jpeg",
  720. "overlays":[
  721. { // yoko (ono)
  722. "x":14,
  723. "y":69,
  724. "w":25,
  725. "h":10,
  726. "over":"07_ono.svg",
  727. "debug":false
  728. },
  729. { // (yoko) ono
  730. "x":173,
  731. "y":57,
  732. "w":35,
  733. "h":10,
  734. "over":"07_ono.svg",
  735. "debug":false
  736. },
  737. { // poetry
  738. "x":138,
  739. "y":7,
  740. "w":35,
  741. "h":108,
  742. "over":"05_poetry.svg",
  743. "debug":false
  744. },
  745. { // yoko ono + poetry
  746. "x":172,
  747. "y":66,
  748. "w":40,
  749. "h":58,
  750. "over":"07_ono+poetry.svg",
  751. "debug":false
  752. },
  753. ]
  754. }
  755. ],
  756. "20":[
  757. {"active":true},
  758. {
  759. "page":40,
  760. "bg":"39_HIggins.jpeg",
  761. "overlays":[
  762. { // dick higgins
  763. "x":76,
  764. "y":31,
  765. "w":97,
  766. "h":10,
  767. "over":"07_higgins.svg",
  768. "debug":false
  769. },
  770. { // compositions
  771. "x":118,
  772. "y":106,
  773. "w":103,
  774. "h":70,
  775. "over":"05_compositions.svg",
  776. "debug":false
  777. },
  778. ]
  779. }
  780. ],
  781. "21":[
  782. {"active":true},
  783. {
  784. "page":42,
  785. "bg":"41_Ichiyanagi.jpeg",
  786. "overlays":[
  787. { // i(toshi) chiyanagi
  788. "x":13,
  789. "y":80,
  790. "w":82,
  791. "h":10,
  792. "over":"07_ichiyanagi.svg",
  793. "debug":false
  794. },
  795. { // ichiyanagi
  796. "x":171,
  797. "y":67,
  798. "w":41,
  799. "h":10,
  800. "over":"07_ichiyanagi.svg",
  801. "debug":false
  802. },
  803. { // music (gris 50)
  804. "x":43,
  805. "y":91,
  806. "w":105,
  807. "h":48,
  808. "over":"05_music50.svg",
  809. "debug":false
  810. },
  811. ]
  812. }
  813. ],
  814. "23":[
  815. {"active":true},
  816. {
  817. "page":46,
  818. "bg":"45_Jennings.jpeg",
  819. "overlays":[
  820. { // terry jennings
  821. "x":86,
  822. "y":74,
  823. "w":112,
  824. "h":10,
  825. "over":"07_jennings.svg",
  826. "debug":false
  827. },
  828. { // music (gris 50)
  829. "x":28,
  830. "y":84,
  831. "w":105,
  832. "h":48,
  833. "over":"05_music50.svg",
  834. "debug":false
  835. },
  836. ]
  837. }
  838. ],
  839. "25":[
  840. {
  841. "page":49,
  842. "bg":"48_Dennis.jpeg",
  843. "overlays":[
  844. { // dennis
  845. "x":76,
  846. "y":115,
  847. "w":48,
  848. "h":10,
  849. "over":"07_dennis.svg",
  850. "debug":false
  851. },
  852. ]
  853. },
  854. {"active":true}
  855. ],
  856. "28":[
  857. {
  858. "page":55,
  859. "bg":"54_DingDong.jpeg",
  860. "overlays":[
  861. { // ding dong
  862. "x":87,
  863. "y":122,
  864. "w":79,
  865. "h":10,
  866. "over":"07_dingdong.svg",
  867. "debug":false
  868. },
  869. { // music (gris 50)
  870. "x":63,
  871. "y":75,
  872. "w":105,
  873. "h":48,
  874. "over":"05_music50.svg",
  875. "debug":false
  876. },
  877. ]
  878. },
  879. {"active":true}
  880. ],
  881. "29":[
  882. {
  883. "page":57,
  884. "bg":"56_Johnson.jpeg",
  885. "overlays":[
  886. { // ray j(ohnson james waring)
  887. "x":139,
  888. "y":96,
  889. "w":43,
  890. "h":10,
  891. "over":"07_johnson.svg",
  892. "debug":false
  893. },
  894. { // ray johnson james waring + poetry
  895. "x":181,
  896. "y":96,
  897. "w":35,
  898. "h":12,
  899. "over":"07_johnson+poetry.svg",
  900. "debug":false
  901. },
  902. { // (ray john)son (james waring)
  903. "x":17,
  904. "y":108,
  905. "w":33,
  906. "h":10,
  907. "over":"07_johnson.svg",
  908. "debug":false
  909. },
  910. { // (ray johnson) james waring
  911. "x":104,
  912. "y":155,
  913. "w":112,
  914. "h":10,
  915. "over":"07_johnson.svg",
  916. "debug":false
  917. },
  918. { // (p) oetry
  919. "x":181,
  920. "y":7,
  921. "w":35,
  922. "h":90,
  923. "over":"05_poetry.svg",
  924. "debug":false
  925. },
  926. { // p (oetry)
  927. "x":181,
  928. "y":107,
  929. "w":35,
  930. "h":20,
  931. "over":"05_poetry.svg",
  932. "debug":false
  933. },
  934. ]
  935. },
  936. {"active":true}
  937. ],
  938. "30":[
  939. {
  940. "page":59,
  941. "bg":"58_MacLow.jpeg",
  942. "overlays":[
  943. { // maclow (80%)
  944. "x":38,
  945. "y":105,
  946. "w":130,
  947. "h":10,
  948. "over":"07_maclow.svg",
  949. "debug":false
  950. },
  951. { // music (gris 50)
  952. "x":42,
  953. "y":58,
  954. "w":106,
  955. "h":48,
  956. "over":"05_music50.svg",
  957. "debug":false
  958. },
  959. { // poetry
  960. "x":147,
  961. "y":0,
  962. "w":35,
  963. "h":108,
  964. "over":"05_poetry.svg",
  965. "debug":false
  966. },
  967. { // essays
  968. "x":181,
  969. "y":0,
  970. "w":35,
  971. "h":108,
  972. "over":"05_essays.svg",
  973. "debug":false
  974. },
  975. { // indeterminacy
  976. "x":108,
  977. "y":139,
  978. "w":104,
  979. "h":70,
  980. "over":"04_indeterminacy.svg",
  981. "debug":false
  982. },
  983. ]
  984. },
  985. {"active":true}
  986. ],
  987. "40":[
  988. {"active":true},
  989. {
  990. "page":80,
  991. "bg":"79_Maxfield.jpeg",
  992. "overlays":[
  993. { // ri(chard maxfield)
  994. "x":191,
  995. "y":117,
  996. "w":20,
  997. "h":10,
  998. "over":"07_maxfield.svg",
  999. "debug":false
  1000. },
  1001. { // (ri)chard maxfield
  1002. "x":14,
  1003. "y":131,
  1004. "w":121,
  1005. "h":10,
  1006. "over":"07_maxfield.svg",
  1007. "debug":false
  1008. },
  1009. { // essays
  1010. "x":173,
  1011. "y":9,
  1012. "w":35,
  1013. "h":108,
  1014. "over":"05_essays.svg",
  1015. "debug":false
  1016. },
  1017. ]
  1018. }
  1019. ],
  1020. "46":[
  1021. {
  1022. "page":91,
  1023. "bg":"90_Simone.jpeg",
  1024. "overlays":[
  1025. { // simone forti
  1026. "x":70,
  1027. "y":124,
  1028. "w":50,
  1029. "h":10,
  1030. "over":"07_forti.svg",
  1031. "debug":false
  1032. },
  1033. ]
  1034. },
  1035. {"active":true}
  1036. ],
  1037. "47":[
  1038. {
  1039. "page":93,
  1040. "bg":"92_Paik.jpeg",
  1041. "overlays":[
  1042. { // nam (june paik)
  1043. "x":185,
  1044. "y":106,
  1045. "w":28,
  1046. "h":10,
  1047. "over":"07_paik.svg",
  1048. "debug":false
  1049. },
  1050. { // (nam) june paik
  1051. "x":17,
  1052. "y":117,
  1053. "w":80,
  1054. "h":10,
  1055. "over":"07_paik.svg",
  1056. "debug":false
  1057. },
  1058. { // essay
  1059. "x":178,
  1060. "y":5,
  1061. "w":35,
  1062. "h":93,
  1063. "over":"05_essays.svg",
  1064. "debug":false
  1065. },
  1066. ]
  1067. },
  1068. {"active":true}
  1069. ],
  1070. "48":[
  1071. {
  1072. "page":95,
  1073. "bg":"94_Riley.jpeg",
  1074. "overlays":[
  1075. { // terry riley
  1076. "x":99,
  1077. "y":141,
  1078. "w":103,
  1079. "h":11,
  1080. "over":"07_riley.svg",
  1081. "debug":false
  1082. },
  1083. { // music (gris 50)
  1084. "x":30,
  1085. "y":65,
  1086. "w":105,
  1087. "h":48,
  1088. "over":"05_music50.svg",
  1089. "debug":false
  1090. },
  1091. ]
  1092. },
  1093. {"active":true}
  1094. ],
  1095. "50":[
  1096. {"active":true},
  1097. {
  1098. "page":100,
  1099. "bg":"99_Rot.jpeg",
  1100. "overlays":[
  1101. { // earle brown
  1102. "x":25,
  1103. "y":167,
  1104. "w":75,
  1105. "h":10,
  1106. "over":"07_rot.svg",
  1107. "debug":false
  1108. },
  1109. { // poetry
  1110. "x":168,
  1111. "y":15,
  1112. "w":35,
  1113. "h":108,
  1114. "over":"05_poetry.svg",
  1115. "debug":false
  1116. },
  1117. ]
  1118. }
  1119. ],
  1120. "51":[
  1121. {
  1122. "page":101,
  1123. "bg":"100_Williams.jpeg",
  1124. "overlays":[
  1125. { // emmet williams
  1126. "x":33,
  1127. "y":178,
  1128. "w":137,
  1129. "h":10,
  1130. "over":"07_williams.svg",
  1131. "debug":false
  1132. },
  1133. { // poetry
  1134. "x":164,
  1135. "y":23,
  1136. "w":35,
  1137. "h":108,
  1138. "over":"05_poetry.svg",
  1139. "debug":false
  1140. },
  1141. ]
  1142. },
  1143. {"active":true}
  1144. ],
  1145. "53":[
  1146. {
  1147. "page":105,
  1148. "bg":"104_Wolff.jpeg",
  1149. "overlays":[
  1150. { // christian wolff
  1151. "x":162,
  1152. "y":165,
  1153. "w":55,
  1154. "h":10,
  1155. "over":"07_wolff.svg",
  1156. "debug":false
  1157. },
  1158. { // christian wolff
  1159. "x":17,
  1160. "y":177,
  1161. "w":79,
  1162. "h":10,
  1163. "over":"07_brown.svg",
  1164. "debug":false
  1165. },
  1166. { // music (gris 50)
  1167. "x":43,
  1168. "y":67,
  1169. "w":105,
  1170. "h":48,
  1171. "over":"05_music50.svg",
  1172. "debug":false
  1173. },
  1174. ]
  1175. },
  1176. {"active":true}
  1177. ],
  1178. "55":[
  1179. {
  1180. "page":109,
  1181. "bg":"108_Young.jpeg",
  1182. "overlays":[
  1183. { // la monte young
  1184. "x":96,
  1185. "y":183,
  1186. "w":122,
  1187. "h":10,
  1188. "over":"07_young.svg",
  1189. "debug":false
  1190. },
  1191. { // compositions
  1192. "x":112,
  1193. "y":111,
  1194. "w":103,
  1195. "h":70,
  1196. "over":"05_compositions.svg",
  1197. "debug":false
  1198. },
  1199. ]
  1200. },
  1201. {"active":true}
  1202. ],
  1203. "56":[
  1204. {
  1205. "page":111,
  1206. "bg":"110_StraightLine.jpeg",
  1207. "overlays":[]
  1208. },
  1209. {"active":true}
  1210. ],
  1211. "57":[
  1212. {
  1213. "page":113,
  1214. "bg":"112_Portrait?.jpeg",
  1215. "overlays":[]
  1216. },
  1217. {
  1218. "page":114,
  1219. "bg":"113_4couv.jpeg",
  1220. "overlays":[]
  1221. }
  1222. ],
  1223. "58":[
  1224. {
  1225. "page":115,
  1226. "bg":"114_4couv.jpeg",
  1227. "overlays":[
  1228. { // lettre raoul hausmann
  1229. "x":140,
  1230. "y":5,
  1231. "w":80,
  1232. "h":200,
  1233. "over":"hausmann.svg",
  1234. "debug":false
  1235. }
  1236. ]
  1237. },
  1238. {"active":true}
  1239. ]
  1240. };