| |
| <?php
|
| <style>
|
| .prompt-generator {
|
| max-width: 680px;
|
| margin: 50px auto;
|
| padding: 30px;
|
| background:
|
| color:
|
| border-radius: 15px;
|
| box-shadow: 0 0 20px rgba(0,0,0,0.6);
|
| }
|
| .prompt-generator h1 {
|
| font-size: 34px;
|
| margin-bottom: 10px;
|
| }
|
| .prompt-generator p {
|
| font-size: 16px;
|
| margin-bottom: 20px;
|
| }
|
| .prompt-generator select, .prompt-generator button {
|
| padding: 14px;
|
| font-size: 16px;
|
| margin-bottom: 15px;
|
| border: none;
|
| border-radius: 8px;
|
| width: 100%;
|
| }
|
| .prompt-generator button {
|
| background:
|
| color:
|
| cursor: pointer;
|
| }
|
| .prompt-generator button:hover {
|
| background:
|
| }
|
| .prompt-output {
|
| margin-top: 20px;
|
| background:
|
| padding: 20px;
|
| border-radius: 8px;
|
| font-size: 16px;
|
| line-height: 1.6;
|
| }
|
| </style>
|
|
|
| <div class="prompt-generator">
|
| <h1>🌊 Flash Flood Prompt Generator</h1>
|
| <p>Generate random flood disaster prompts with Indonesian local drama.</p>
|
|
|
| <select id="category">
|
| <option value="umum">🌧️ General Flood</option>
|
| <option value="sapi">🐄 Cow Swept Away</option>
|
| <option value="sawah">🌾 Flooded Rice Fields</option>
|
| </select>
|
|
|
| <button onclick="generatePrompt()">✨ Generate Prompt</button>
|
|
|
| <div id="result" class="prompt-output"></div>
|
| </div>
|
|
|
| <script>
|
| const prompts = {
|
| umum: [
|
| "A flash flood hits a hillside village in Indonesia, muddy waves sweep away homes with zinc roofs, villagers scream while clinging to banana trees, and the red-and-white flag flutters in the rain-soaked wind.",
|
| "CCTV footage shows flash flood water bursting through a narrow alley in a densely packed neighborhood, dragging sandals, motorbikes, and street food carts as thunder rumbles above.",
|
| "A muddy flash flood flows through rice fields in a rural Javanese area, carrying away scarecrows and wooden huts, while distant mosque loudspeakers continue calling for prayer.",
|
| "Sudden floodwaters crash into a traditional market in Indonesia, turning walkways into raging rivers; vendors scramble to save goods as floating plastic baskets and vegetables are swept away.",
|
| "Drone view of a flash flood tearing through a village surrounded by hills, muddy torrents smashing through bamboo fences, with the Indonesian flagpole standing in the schoolyard barely visible above water."
|
| ],
|
| sapi: [
|
| "A giant wave from a flash flood hits a rural Indonesian village, carrying away a large white cow through flooded rice fields and collapsing bamboo fences, while the Indonesian flag still flutters on a pole standing half-submerged.",
|
| "Powerful waves of a flash flood roar through a mountainous village in Sumatra, dragging a screaming cow along with broken logs and debris, as the red-and-white Indonesian flag stands defiantly in the middle of the raging water.",
|
| "A sudden wave of muddy water crashes through a cattle pen in Java, sweeping away cows and villagers’ belongings; the chaotic scene unfolds under a stormy sky with the Indonesian flag waving proudly on a nearby hill.",
|
| "CCTV footage shows a massive brown cow trying to resist the strong current, but is eventually overpowered by a crashing wave, dragged past a mosque and a still-standing flagpole with the Merah Putih swaying in the wind.",
|
| "A thunderous wave of floodwater rips through a wooden house compound in Sulawesi, a white cow moos desperately as it's pulled underwater, the scene darkened by thick clouds and framed by a lone flagpole with the Indonesian flag soaked but upright."
|
| ],
|
| sawah: [
|
| "A muddy flash flood flows through rice fields in a rural Javanese area, carrying away scarecrows and wooden huts, while distant mosque loudspeakers continue calling for prayer.",
|
| "Drone captures muddy water submerging ready-to-harvest rice paddies in a West Sumatran valley, farmers helplessly watch as the currents carry away bundles of rice.",
|
| "Floodwater from a broken embankment sweeps through Sundanese rice fields, washing away farmers’ tools and stacks of hay, while the village’s Indonesian flag remains half-submerged.",
|
| "Sudden flash flood water floods a terraced rice field area in Bali, creating brown cascading waterfalls between paddies, while farmers scramble to higher ground.",
|
| "Heavy rain causes a dam to overflow in Central Java, muddy water submerging sawah and small huts as banana leaves and debris float past."
|
| ]
|
| };
|
|
|
| function generatePrompt() {
|
| const category = document.getElementById("category").value;
|
| const list = prompts[category];
|
| const randomPrompt = list[Math.floor(Math.random() * list.length)];
|
| document.getElementById("result").innerHTML = randomPrompt;
|
| }
|
| </script>
|
|
|
| |
| |
Comments