Colorful Mood Tracker App
Aug 9, 2025
v.0
A fun and engaging mood tracker application that allows users to log their daily moods and feelings, providing vibrant visuals and insightful trends over time. Emotions Mental health Mood tracker Daily mood log Feelings

Versions  

Bugs  
None!

Get This App On Your Website

1. Copy the code above with the iframe and link.
2. Paste the code into your website.
3. Resize the iframe to fit your website.

Javascript, HTML, CSS Code

                
<html>
<head>
<script type="text/javascript"> window.addEventListener('error', function(event) { var message = JSON.parse(JSON.stringify(event.message)); var source = event.filename; var lineno = event.lineno; var colno = event.colno; var error = event.error; window.parent.postMessage({ type: 'iframeError', details: { message: message, source: source, lineno: lineno, colno: colno, error: error ? error.stack : '' } }, '*'); }); window.addEventListener('unhandledrejection', function(event) { window.parent.postMessage({ type: 'iframePromiseRejection', details: { reason: event.reason } }, '*'); }); </script>

<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">

<title>DTF Print & Press V26</title>
<meta name="description" content="A rainbow-fueled DTF Print & Press V26 app that lets you calculate pricing based on quantity and product selections!">
<meta name="keywords" content="DTF, Print & Press, pricing calculator, interactive app, colorful app, flexible pricing, sliders, products">

<style>
body {
background: linear-gradient(135deg, #FFCCBC, #80DEEA);
color: #333;
font-family: 'Lobster', cursive;
text-align: left;
padding: 20px;
}
#main-container {
margin: auto;
max-width: 600px;
padding: 20px;
border-radius: 10px;
background: rgba(255, 255, 255, 0.8);
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
backdrop-filter: blur(5px);
}
.form-group {
margin-bottom: 20px;
}
input[type="text"], input[type="number"], select {
width: calc(100% - 20px);
margin: 10px 0;
padding: 10px;
border: none;
border-radius: 5px;
background-color: #ffffff;
color: #333;
}
input[type="text"] {
max-width: 100%;
}
.result {
font-size: 20px;
font-weight: bold;
margin-top: 20px;
border: 2px dashed #Open in dialogue box09;
padding: 15px;
border-radius: 10px;
background-color: rgba(255, 255, 255, 0.9);
animation: fadeIn 0.5s;
}
.btn {
background-color: #FF7043;
border: none;
padding: 10px;
border-radius: 5px;
cursor: pointer;
color: white;
font-weight: bold;
transition: background-color 0.3s;
}
.btn:hover {
background-color: #F4511E;
}
label {
display: block;
margin: 10px 0 5px;
}
table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
background-color: rgba(255, 255, 255, 0.7);
}
th, td {
border: 2px solid #009688;
padding: 10px;
text-align: center;
}
th {
background-color: #B2DFDB;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
</style>
<link href="https://fonts.googleapis.com/css2?family=Lobster&display=swap" rel="stylesheet">

<link rel="canonical" href="https://calculator.tools/app/colorful-mood-tracker-app-1595/">
<meta charset="utf-8">

</head>
<body>
<div id="main-container" class="container">
<h1>DTF Print & Press V26 🎨</h1>
<div class="form-group">
<label for="name">Name/PO Number (max 40 characters):</label>
<input type="text" id="name" maxlength="40" placeholder="Enter Name/PO" />
</div>
<div class="form-group">
<label for="quantity">Quantity:</label>
<input type="number" id="quantity" min="1" placeholder="1" />
<input type="range" id="quantity-slider" min="1" max="100" value="1" />
</div>
<div class="form-group">
<label>Product Type:</label>
<table>
<thead>
<tr>
<th>Product</th>
<th>Price</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<label for="product-type-1">T-Shirt</label>
</td>
<td>$<input type="hidden" id="product-type-1" value="10.00" disabled>10.00</td>
</tr>
<tr>
<td>
<label for="product-type-2">Hoodie</label>
</td>
<td>$<input type="hidden" id="product-type-2" value="15.00" disabled>15.00</td>
</tr>
<tr>
<td>
<label for="product-type-3">Mug</label>
</td>
<td>$<input type="hidden" id="product-type-3" value="20.00" disabled>20.00</td>
</tr>
</tbody>
</table>
</div>
<button id="calculate" class="btn">Calculate Pricing</button>
<div class="result" id="result"></div>
</div>

<script>
document.addEventListener("DOMContentLoaded", function() {
const calculateButton = document.getElementById("calculate");
const resultDisplay = document.getElementById("result");
const quantityInput = document.getElementById("quantity");
const quantitySlider = document.getElementById("quantity-slider");

quantitySlider.oninput = function() {
quantityInput.value = quantitySlider.value;
};

calculateButton.onclick = function() {
const name = document.getElementById("name").value || "Customer";
const quantity = parseInt(quantityInput.value) || 1;
const productTypePrice = document.querySelector("table tbody input:checked")?.value || "0.00";

const totalPrice = (parseFloat(productTypePrice) * quantity).toFixed(2);

resultDisplay.innerText = `${name}, your Total Price: $${totalPrice}`;
};

saveLocal = function() {
const name = document.getElementById("name").value;
const quantity = quantityInput.value;
const data = { name, quantity };
localStorage.setItem("dtfData", JSON.stringify(data));
alert("Data saved!");
}

loadLocal = function() {
const data = JSON.parse(localStorage.getItem("dtfData"));
if (data) {
document.getElementById("name").value = data.name || '';
quantityInput.value = data.quantity || '1';
quantitySlider.value = data.quantity || '1';
} else {
alert("No data found.");
}
}

loadLocal(); // Auto-load storage data on start
});
</script>
<script type="text/javascript"> var localStoragePrefix = "ct-1595"; var lastSave = 0; function saveLocal(data) { if (Date.now() - lastSave < 1000) { return; } let cookie = localStoragePrefix + "=" + JSON.stringify(data) + "; path=" + window.location.pathname + "'; SameSite=Strict"; cookie += "; expires=" + new Date(Date.now() + 1000 * 60 * 60 * 24 * 365 * 1000).toUTCString(); document.cookie = cookie; lastSave = Date.now(); } function loadLocal() { var cookiePrefix = localStoragePrefix + "="; var cookieStart = document.cookie.indexOf(cookiePrefix); if (cookieStart > -1) { let cookieEnd = document.cookie.indexOf(";", cookieStart); if (cookieEnd == -1) { cookieEnd = document.cookie.length; } var cookieData = document.cookie.substring(cookieStart + cookiePrefix.length, cookieEnd); return JSON.parse(cookieData); } } </script>
<script type="text/javascript"> window.addEventListener('load', function() { var observer = new MutationObserver(function() { window.parent.postMessage({height: document.documentElement.scrollHeight || document.body.scrollHeight},"*"); }); observer.observe(document.body, {attributes: true, childList: true, subtree: true}); window.parent.postMessage({height: document.documentElement.scrollHeight || document.body.scrollHeight},"*"); }); </script>
</body>
</html>

NEW APPS

These are apps made by the community!

FAQ

What is Calculator Tools?

Calculator Tools allows you to instantly create and generate any simple one page web app for free and immediately have it online to use and share. This means anything! Mini apps, calculators, trackers, tools, games, puzzles, screensavers... anything you can think of that the AI can handle.

The AI uses Javacript, HTML, and CSS programming to code your app up in moments. This currently uses GPT-4 the latest and most powerful version of the OpenAI GPT language model.

What Do You Mean Make An App?

Have you ever just wanted a simple app but didn't want to learn programming or pay someone to make it for you? Calculator Tools is the solution! Just type in your prompt and the AI will generate a simple app for you in seconds. You can then customize it to your liking and share it with your friends.

AI has become so powerful it is that simple these days.

Does This Use ChatGPT?

It uses GPT-4 which is the most powerful model for ChatGPT.

Calculator Tools does not remember things from prompt to prompt, each image is a unique image that does not reference any of the images or prompts previously supplied.