-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathanatomy.html
More file actions
175 lines (144 loc) · 7.34 KB
/
anatomy.html
File metadata and controls
175 lines (144 loc) · 7.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Goose Anatomy - Detailed biological structures of the goose.">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self' 'nonce-8IBTHwOdqNKAWeKl7plt8g=='; style-src 'self' 'unsafe-inline';">
<title>Goose Anatomy - Goosepedia</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Simple Navbar -->
<nav class="navbar">
<a href="index.html" class="logo">🪿 Goosepedia</a>
<ul class="nav-menu">
<li><a href="index.html" class="nav-link">Home</a></li>
<li><a href="anatomy.html" class="nav-link">Anatomy</a></li>
<li><a href="diet.html" class="nav-link">Diet</a></li>
<li class="settings-dropdown">
<span class="nav-link" aria-haspopup="true">Settings ▾</span>
<div class="dropdown-content">
<a href="#" class="theme-toggle">Switch Theme</a>
</div>
</li>
</ul>
</nav>
<main class="main-content">
<h1 id="anatomy-title">Goose Anatomy</h1>
<div class="site-sub">From Goosepedia, the free encyclopedia</div>
<section>
<p>Geese have very specific anatomical structures that make them excellent swimmers and flyers. Their physiology is adapted for both long-distance migration and efficient foraging on land and water.</p>
</section>
<section>
<h2>The Bill</h2>
<p>The goose bill is distinctively marked by "lamellae," which are comb-like structures used for filter-feeding.
They essentially function like teeth to grasp slippery grass and aquatic weeds. This serrated edge allows them to graze on short grass very efficiently.</p>
</section>
<section>
<h2>Eyes and Vision</h2>
<p>Geese have excellent eyesight, which aids them in spotting predators and selecting food. Their eyes are positioned on the sides of their head, providing a wide field of view. They can see UV light, which helps them identify healthy vegetation.</p>
</section>
<section>
<h2>The Neck</h2>
<p>Their long necks are not just for elegance; they allow geese to reach underwater vegetation without diving. This adaptation lets them upend (tip forward) to feed on submerged plants while keeping an eye out for danger above water.</p>
</section>
<section>
<h2>Digestive System</h2>
<p>Geese obtain nutrition from a variety of sources but have a relatively inefficient digestive system compared to other herbivores. This means they must eat large quantities of food and defecate frequently—often every 12 to 20 minutes.</p>
</section>
<section>
<h2>Feathers</h2>
<p>Geese have waterproof feathers. A gland near their tail, called the uropygial gland, produces oil which they spread over their feathers while preening. This waterproofing is essential for buoyancy and insulation against cold water.</p>
</section>
<section>
<h2>Wings</h2>
<p>Goose wings are powerful and broad, capable of sustaining flight for thousands of miles during migration. The flight feathers (remiges) are stiff and strong to provide lift, while the coverts smooth airflow over the wing.</p>
</section>
<section>
<h2>Feet</h2>
<p>Their webbed feet are designed for paddling efficiently through water. They are also capable of walking on
land, though they perform a characteristic waddle. The webbing connects the three front toes, acting as a paddle, while the small hind toe helps with balance on uneven ground.</p>
</section>
<p><a href="index.html">Return to Main Page</a></p>
</main>
<footer>
Goosepedia © 2026. All rights reserved.
</footer>
<script nonce="8IBTHwOdqNKAWeKl7plt8g==">
(function() {
let animationId = null;
function createGeese() {
// STOP ANIMATION IF RUNNING
if (animationId) {
cancelAnimationFrame(animationId);
animationId = null;
}
// Remove existing geese if any
const existingContainer = document.getElementById('geese-container');
if (existingContainer) {
existingContainer.remove();
}
const container = document.createElement('div');
container.id = 'geese-container';
// Styles moved to CSS #geese-container
document.body.appendChild(container);
const geese = [];
const speedFactor = 0.1;
for(let i = 0; i < 15; i++) {
const goose = document.createElement('div');
goose.textContent = '👕🪿';
goose.classList.add('goose');
// Initial random positions
const x = Math.random() * 100;
const y = Math.random() * 100;
// Set CSS variables for position
goose.style.setProperty('--x', x + 'vw');
goose.style.setProperty('--y', y + 'vh');
container.appendChild(goose);
geese.push({
el: goose,
x: x,
y: y,
dx: (Math.random() - 0.5) * speedFactor,
dy: (Math.random() - 0.5) * speedFactor
});
}
function animate() {
geese.forEach(g => {
// Update position
g.x += g.dx;
g.y += g.dy;
// Wrap around screen
if (g.x < -10) g.x = 110;
if (g.x > 110) g.x = -10;
if (g.y < -10) g.y = 110;
if (g.y > 110) g.y = -10;
// Update CSS variables
g.el.style.setProperty('--x', g.x + 'vw');
g.el.style.setProperty('--y', g.y + 'vh');
});
animationId = requestAnimationFrame(animate);
}
animate();
}
createGeese();
// Expose for theme changes to safely restart
window.createGeese = createGeese;
// EASTER EGG: HONKATOMY
const title = document.getElementById('anatomy-title');
let clickCount = 0;
if (title) {
title.addEventListener('click', () => {
clickCount++;
if (clickCount === 5) {
title.textContent = "Honkatomy";
title.style.color = "red";
alert("YOU HAVE UNLOCKED THE FORBIDDEN KNOWLEDGE OF HONKATOMY!");
}
});
}
})();
</script>
</body>
</html>