KizCastele - Build Your Castle!
About this app
KizCastele is a fun and interactive app where you can build your own castle. Let your creativity run wild and create the castle of your dreams!
KizCastele - Build Your Castle! KizCastele Build Castle
Related apps
Put this on your site
Source
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>KizCastele - Build Your Castle!</title>
<meta name="description" content="KizCastele is a fun and interactive app where you can build your own castle. Let your creativity run wild and create the castle of your dreams!">
<meta name="keywords" content="kizcastele, castle, build, creativity, app">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet">
<script type="text/javascript">
try {
// App Javascript Goes Here. Place your entire script content inside the try block for error handling.
const castleColors = [
'#FF4D00',
'#FFB700',
'#FF006E',
'#00C8FF',
'#00FF7D',
'#FF00DC',
'#FF00FF',
'#00FF00'
];
document.addEventListener("DOMContentLoaded", function() {
const castleContainer = document.getElementById('castle-container');
const colorPicker = document.getElementById('color-picker');
const buildButton = document.getElementById('build-button');
// Set initial castle color
castleContainer.style.backgroundColor = castleColors[0];
// Create color options
for (let i = 0; i < castleColors.length; i++) {
const colorOption = document.createElement('div');
colorOption.classList.add('color-option');
colorOption.style.backgroundColor = castleColors[i];
colorOption.addEventListener('click', function() {
castleContainer.style.backgroundColor = castleColors[i];
});
colorPicker.appendChild(colorOption);
}
// Build button click event
buildButton.addEventListener('click', function() {
const castleName = document.getElementById('castle-name-input').value;
if (castleName === '') {
alert('Please enter a castle name.');
} else {
const castleText = document.createElement('h1');
castleText.textContent = castleName;
castleText.classList.add('castle-text');
castleContainer.appendChild(castleText);
alert('Your castle has been built!');
}
});
});
} catch (error) {
// This will throw the error to the parent window.
throw error;
}
</script>
<style>
/* App CSS Goes Here */
body {
background-color: #F5F5F5;
font-family: 'Roboto', sans-serif;
}
#main-container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.castle-container {
width: 300px;
height: 300px;
border-radius: 8px;
display: flex;
justify-content: center;
align-items: center;
position: relative;
}
.color-picker {
display: flex;
justify-content: center;
margin-top: 16px;
}
.color-option {
width: 24px;
height: 24px;
border-radius: 50%;
margin: 0 8px;
cursor: pointer;
}
.castle-text {
position: absolute;
bottom: 16px;
color: white;
font-size: 24px;
}
.build-button {
margin-top: 16px;
background-color: #FF4D00;
color: white;
border: none;
border-radius: 8px;
padding: 8px 16px;
cursor: pointer;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<div class="castle-container" id="castle-container">
<h1 class="castle-text">KizCastele</h1>
</div>
<div class="color-picker" id="color-picker"></div>
<input type="text" id="castle-name-input" placeholder="Enter castle name" class="form-control">
<button id="build-button" class="build-button">Build Castle</button>
</div>
</body>
</html>
NEW APPS
These are apps made by the community!