တာဝန်-
နေအဖွဲ့အစည်း ပုံစံငယ်တစ်ခု တည်ဆောက်ပါ။
အပြန်အလှန်အကျိုးပြု နေအဖွဲ့အစည်း ပုံစံငယ်
သင့်အတွက် အပြန်အလှန်အကျိုးပြု နေအဖွဲ့အစည်း ပုံစံငယ်တစ်ခု ကျွန်ုပ် ဖန်တီးပေးထားပါတယ်! ဒီနေရာမှာ ဂြိုဟ်တွေရဲ့ လှုပ်ရှားမှုကို ကြည့်ရှုနိုင်ပြီး သူတို့ရဲ့ ဝိသေသလက္ခဏာတွေကို လေ့လာနိုင်သလို လှုပ်ရှားမှုတွေကိုလည်း ထိန်းချုပ်နိုင်ပါတယ်။
ဂြိုဟ်တစ်ခုခု သို့မဟုတ် နေကို နှိပ်ပြီး အသေးစိတ် လေ့လာကြည့်ပါ!
🌟 နေအဖွဲ့အစည်းအကြောင်း စိတ်ဝင်စားဖွယ် အချက်အလက်များ
🔥 နေ
နေအဖွဲ့အစည်းတစ်ခုလုံး၏ ဒြပ်ထု ၉၉.၈၆% ပါဝင်သည်။ ဗဟိုချက်ရှိ အပူချိန်မှာ ၁၅ သန်း ဒီဂရီအထိ ရှိသည်။
🌍 ကမ္ဘာနှင့်တူသော ဂြိုဟ်များ
ဗုဒ္ဓဟူး၊ သောကြာ၊ ကမ္ဘာနှင့် အင်္ဂါဂြိုဟ်တို့သည် အဓိကအားဖြင့် ကျောက်နှင့် သတ္တုများဖြင့် ဖွဲ့စည်းထားသည်။
🪐 ဓာတ်ငွေ့ဘီလူးကြီးများ
ကြာသပတေး၊ စနေ၊ ယူရေးနပ်စ်နှင့် နက်ပကျွန်းတို့သည် အဓိကအားဖြင့် ဓာတ်ငွေ့နှင့် ရေခဲများဖြင့် ဖွဲ့စည်းထားသည်။
⭐ ဥက္ကာခဲပတ်လမ်း
အင်္ဂါဂြိုဟ်နှင့် ကြာသပတေးဂြိုဟ်ကြားတွင် ကျောက်တုံးအကျိုးအပဲ့ ထောင်ပေါင်းများစွာရှိသော ပတ်လမ်းတစ်ခု ရှိသည်။

{
orbit.style.animationPlayState = 'paused';
});
btn.textContent = "\u25b6\ufe0f \u1005\u1010\u1004\u103a\u101b\u1014\u103a";
btn.classList.add('paused');
} else {
solarSystem.style.animationPlayState = 'running';
solarSystem.querySelectorAll('.orbit').forEach(orbit => {
orbit.style.animationPlayState = 'running';
});
btn.textContent = "\u23f8\ufe0f \u1001\u1031\u1010\u1039\u1010\u101b\u1015\u103a\u101b\u1014\u103a";
btn.classList.remove('paused');
}
isPlaying = !isPlaying;
};
window.toggleOrbits = function() {
const solarSystem = document.getElementById('solarSystem');
const btn = document.getElementById('orbitToggleBtn');
if (!solarSystem || !btn) return;
if (showOrbits) {
solarSystem.classList.add('hide-orbits');
btn.textContent = "\u2b55 \u1015\u1010\u103a\u101c\u1019\u103a\u1038\u1019\u103b\u102c\u1038 \u1015\u103c\u101b\u1014\u103a";
} else {
solarSystem.classList.remove('hide-orbits');
btn.textContent = "\ud83d\udd18 \u1015\u1010\u103a\u101c\u1019\u103a\u1038\u1019\u103b\u102c\u1038";
}
showOrbits = !showOrbits;
};
window.changeSpeed = function(speed) {
const speedValue = document.getElementById('speedValue');
const solarSystem = document.getElementById('solarSystem');
if (!speedValue || !solarSystem) return;
animationSpeed = parseFloat(speed);
speedValue.textContent = speed + 'x';
solarSystem.querySelectorAll('.orbit').forEach((orbit, index) => {
const baseDuration = [10, 15, 20, 30, 60, 90, 120, 165][index] || 20;
orbit.style.animationDuration = (baseDuration / animationSpeed) + 's';
});
};
window.resetAnimation = function() {
const solarSystem = document.getElementById('solarSystem');
if (!solarSystem) return;
solarSystem.querySelectorAll('.orbit').forEach(orbit => {
orbit.style.animation = 'none';
});
setTimeout(() => {
solarSystem.querySelectorAll('.orbit').forEach((orbit, index) => {
orbit.style.animation = '';
const baseDuration = [10, 15, 20, 30, 60, 90, 120, 165][index] || 20;
orbit.style.animationDuration = (baseDuration / animationSpeed) + 's';
});
}, 10);
};
window.showPlanetInfo = function(planetId) {
const panel = document.getElementById('planetInfoPanel');
const nameEl = document.getElementById('planetName');
const detailsEl = document.getElementById('planetDetails');
if (!panel || !nameEl || !detailsEl) return;
const planet = planetData[planetId];
if (planet) {
nameEl.textContent = planet.name;
detailsEl.innerHTML = '
' + planet.details + '
';
panel.classList.add('active');
}
};
window.closePlanetInfo = function() {
const panel = document.getElementById('planetInfoPanel');
if (panel) {
panel.classList.remove('active');
}
};
// Инициализация
setTimeout(() => {
changeSpeed(1);
}, 100);
})()"
style="display: none;">