|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | +<head> |
| 4 | + <meta charset="UTF-8"> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 6 | + <title>Natural Disaster Museum · Earth Story</title> |
| 7 | + |
| 8 | + <!-- Fonts --> |
| 9 | + <link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=Inter:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Special+Elite&family=Source+Sans+3:wght@300;400;600&display=swap" rel="stylesheet"> |
| 10 | + |
| 11 | + <!-- Styles --> |
| 12 | + <link rel="stylesheet" href="css/style.css"> |
| 13 | + |
| 14 | + <!-- D3 --> |
| 15 | + <script src="https://cdnjs.cloudflare.com/ajax/libs/d3/7.8.5/d3.min.js"></script> |
| 16 | +</head> |
| 17 | + |
| 18 | +<body> |
| 19 | + <header class="top-bar" id="top-bar"> |
| 20 | + <div class="brand"> |
| 21 | + <span class="brand-earth">Earth</span> Natural Disaster Museum<span class="brand-dim"> · est. 2026</span> |
| 22 | + </div> |
| 23 | + <nav class="breadcrumb" id="top-breadcrumb"> |
| 24 | + <a class="crumb crumb-link" href="globe.html">The Globe: Earth</a> |
| 25 | + <span class="sep">/</span> |
| 26 | + <span class="crumb">Earth Story</span> |
| 27 | + </nav> |
| 28 | + <div class="top-bar-action" id="top-bar-action"></div> |
| 29 | + </header> |
| 30 | + |
| 31 | + <div id="app"> |
| 32 | + <div id="scene-story" class="scene active"> |
| 33 | + <div class="story-header"> |
| 34 | + <h2 class="story-title">EARTH STORY</h2> |
| 35 | + <p class="story-subtitle">Analysing 50 years of global disaster trends</p> |
| 36 | + </div> |
| 37 | + |
| 38 | + <!-- 4 exhibit frames in a 2x2 grid --> |
| 39 | + <div class="exhibits-hall" id="overviewHall"> |
| 40 | + <div class="wall-exhibit" id="exhibit-frequency"> |
| 41 | + <div class="exhibit-spotlight"></div> |
| 42 | + <div class="exhibit-label">EXHIBIT I</div> |
| 43 | + <div class="exhibit-wall-title">THE RISING TIDE</div> |
| 44 | + <div class="exhibit-wall-subtitle">Disaster frequency by subgroup, 1975-2025</div> |
| 45 | + <div class="exhibit-viz-area" id="viz-frequency"></div> |
| 46 | + <div class="exhibit-caption">This stacked area chart reveals a dramatic increase in disaster frequency over five decades. Climate-related disasters (Meteorological, Hydrological, Climatological) show the steepest rise, while Geophysical events remain relatively stable, underscoring the growing impact of climate change.</div> |
| 47 | + </div> |
| 48 | + |
| 49 | + <div class="wall-exhibit" id="exhibit-mortality"> |
| 50 | + <div class="exhibit-spotlight"></div> |
| 51 | + <div class="exhibit-label">EXHIBIT II</div> |
| 52 | + <div class="exhibit-wall-title">THE MORTALITY CRISIS</div> |
| 53 | + <div class="exhibit-wall-subtitle">Annual death toll from natural disasters, 1975-2025</div> |
| 54 | + <div class="exhibit-viz-area" id="viz-mortality"></div> |
| 55 | + <div class="exhibit-caption">Disaster mortality shows extreme variability over five decades, with devastating spikes marking catastrophic events like the 2004 Indian Ocean Tsunami and 2010 Haiti Earthquake. Despite advances in early warning systems, these peaks demonstrate the persistent vulnerability of populations in high-risk regions.</div> |
| 56 | + </div> |
| 57 | + |
| 58 | + <div class="wall-exhibit" id="exhibit-economic"> |
| 59 | + <div class="exhibit-spotlight"></div> |
| 60 | + <div class="exhibit-label">EXHIBIT III</div> |
| 61 | + <div class="exhibit-wall-title">THE HUMAN TOLL</div> |
| 62 | + <div class="exhibit-wall-subtitle">Affected populations over time, 1975-2025</div> |
| 63 | + <div class="exhibit-viz-area" id="viz-economic"></div> |
| 64 | + <div class="exhibit-caption">The number of people affected by natural disasters has grown substantially, reflecting both population growth in hazard-prone areas and improved disaster reporting. Peak years show hundreds of millions impacted, underscoring the scale of displacement, injury, and disruption caused by major events.</div> |
| 65 | + </div> |
| 66 | + |
| 67 | + <div class="wall-exhibit" id="exhibit-geography"> |
| 68 | + <div class="exhibit-spotlight"></div> |
| 69 | + <div class="exhibit-label">EXHIBIT IV</div> |
| 70 | + <div class="exhibit-wall-title">REGIONAL VULNERABILITY</div> |
| 71 | + <div class="exhibit-wall-subtitle">Disaster burden across continents</div> |
| 72 | + <div class="exhibit-viz-area" id="viz-geography"></div> |
| 73 | + <div class="exhibit-caption">Asia bears the brunt of global disaster impacts, experiencing over half of all natural disasters and the majority of casualties. This regional disparity reflects both geographic exposure to hazards and socioeconomic vulnerabilities that amplify disaster consequences in developing nations.</div> |
| 74 | + </div> |
| 75 | + </div> |
| 76 | + </div> |
| 77 | + </div> |
| 78 | + |
| 79 | + <script src="js/data.js"></script> |
| 80 | + <script src="js/scene4_story.js"></script> |
| 81 | + <script> |
| 82 | + document.addEventListener('DOMContentLoaded', async () => { |
| 83 | + await initData(); |
| 84 | + Scene4.init(); |
| 85 | + }); |
| 86 | + </script> |
| 87 | +</body> |
| 88 | +</html> |
0 commit comments