Calculator Tools Calculator Tools

Exponential Growth Visualizer

Jan 7, 2025

About this app

A fun app that shows a number growing exponentially by multiplying it by 1.1 every 0.01 seconds.

Exponential Growth Visualizer Exponential Growth Visualizer Set Growth Multiplier: 1.00 Limit Reached! Start

Put this on your site

Source

index.html
                    <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Exponential Growth Visualizer</title>
<meta name="description" content="A fun app that shows a number growing exponentially by multiplying it every 0.01 seconds.">
<meta name="keywords" content="growth, exponential, number visualization, fun">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1>Exponential Growth Visualizer</h1>
<div>
<label for="growth-input">Set Growth Multiplier: </label>
<input type="number" id="growth-input" value="1.1" step="0.1" min="1.01">
</div>
<div id="number-display">1.00</div>
<div id="limit-message" style="color: red; margin-top: 10px; display: none;">Limit Reached!</div>
<button id="start-button">Start</button>
</div>
<script src="script.js"></script>
</body>
</html>