MediaWiki:Common.js: Difference between revisions
From Ragnafied Wiki
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
$(document).ready(function() { | $(document).ready(function() { | ||
$('body').append('<div class="back-to-top-fixed"><a href="#">↑ TOP</a></div>'); | $('body').append('<div class="back-to-top-fixed"><a href="#">↑ TOP</a></div>'); | ||
}); | |||
$(document).ready(function() { | |||
// Create floating menu | |||
var menuHTML = ` | |||
<div class="floating-menu" id="floatingMenu"> | |||
<div class="floating-menu-header" id="menuHeader"> | |||
<span>📋 QUICK NAV</span> | |||
<span class="arrow">▼</span> | |||
</div> | |||
<div class="floating-menu-items"> | |||
<a href="/wiki/Main_Page">🏠 Main Page</a> | |||
<a href="/wiki/First_Steps">🚀 First Steps</a> | |||
<a href="/wiki/VIP">👑 VIP</a> | |||
<a href="/wiki/Enchant_Stones">💎 Enchant Stones</a> | |||
<a href="/wiki/Nyangvines">🐱 Nyangvines</a> | |||
<a href="/wiki/Custom_Systems">⚙️ Custom Systems</a> | |||
<a href="/wiki/Monthly_Kachua">📅 Monthly Kachua</a> | |||
<a href="/wiki/Troubleshooting">🔧 Troubleshooting</a> | |||
</div> | |||
</div> | |||
<div class="floating-menu-toggle" id="menuToggle">☰</div> | |||
`; | |||
$('body').append(menuHTML); | |||
// Collapse/expand functionality | |||
$('#menuHeader').click(function() { | |||
$('#floatingMenu').toggleClass('collapsed'); | |||
}); | |||
// Mobile toggle | |||
$('#menuToggle').click(function() { | |||
$('#floatingMenu').toggleClass('mobile-visible'); | |||
}); | |||
// Close menu when clicking outside on mobile | |||
$(document).click(function(event) { | |||
if ($(window).width() <= 768) { | |||
if (!$(event.target).closest('#floatingMenu, #menuToggle').length) { | |||
$('#floatingMenu').removeClass('mobile-visible'); | |||
} | |||
} | |||
}); | |||
// Start with menu expanded | |||
$('#floatingMenu').removeClass('collapsed'); | |||
}); | }); | ||
Revision as of 22:21, 20 February 2026
$(document).ready(function() {
$('body').append('<div class="back-to-top-fixed"><a href="#">↑ TOP</a></div>');
});
$(document).ready(function() {
// Create floating menu
var menuHTML = `
<div class="floating-menu" id="floatingMenu">
<div class="floating-menu-header" id="menuHeader">
<span>📋 QUICK NAV</span>
<span class="arrow">▼</span>
</div>
<div class="floating-menu-items">
<a href="/wiki/Main_Page">🏠 Main Page</a>
<a href="/wiki/First_Steps">🚀 First Steps</a>
<a href="/wiki/VIP">👑 VIP</a>
<a href="/wiki/Enchant_Stones">💎 Enchant Stones</a>
<a href="/wiki/Nyangvines">🐱 Nyangvines</a>
<a href="/wiki/Custom_Systems">⚙️ Custom Systems</a>
<a href="/wiki/Monthly_Kachua">📅 Monthly Kachua</a>
<a href="/wiki/Troubleshooting">🔧 Troubleshooting</a>
</div>
</div>
<div class="floating-menu-toggle" id="menuToggle">☰</div>
`;
$('body').append(menuHTML);
// Collapse/expand functionality
$('#menuHeader').click(function() {
$('#floatingMenu').toggleClass('collapsed');
});
// Mobile toggle
$('#menuToggle').click(function() {
$('#floatingMenu').toggleClass('mobile-visible');
});
// Close menu when clicking outside on mobile
$(document).click(function(event) {
if ($(window).width() <= 768) {
if (!$(event.target).closest('#floatingMenu, #menuToggle').length) {
$('#floatingMenu').removeClass('mobile-visible');
}
}
});
// Start with menu expanded
$('#floatingMenu').removeClass('collapsed');
});
