Experience how 404Museum transforms error pages into beautiful art galleries
Click the button below to see how 404Museum would transform this page into an interactive art gallery:
404Museum automatically detects error pages and replaces them with beautiful art. Here's what happens:
Add this single line to your website's <head> section:
<script src="https://jodylabs.surge.sh/404museum/404museum.min.js"></script>
That's it! 404Museum will automatically detect and transform any 404 pages on your site.
Customize 404Museum by defining configuration before loading the script:
<script>
window.Museum404Config = {
theme: 'dark',
artTypes: ['generative', 'particles', 'fractals'],
customMessage: 'Page not found, but enjoy this art!',
colors: {
primary: '#4ecdc4',
secondary: '#ff6b6b',
background: '#0a0a0a'
},
showNavigation: true,
showBranding: true,
artDuration: 30000, // Switch art every 30 seconds
apiEndpoint: 'https://your-api.com/404-logs'
};
</script>
<script src="https://jodylabs.surge.sh/404museum/404museum.min.js"></script>
You can also manually control 404Museum with JavaScript:
// Manually activate the art gallery
window.Museum404.activate();
// Switch to specific art type
window.Museum404.switchArt('particles');
// Deactivate and return to original page
window.Museum404.deactivate();
// Check if currently active
if (window.Museum404.isActive()) {
console.log('Art gallery is active');
}