Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <!DOCTYPE html>
<html lang="es">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Calculadora de Liquidación Futurista</title>
    <link rel="stylesheet" href="styles.css">
</head>
<body>
    <div class="container">
        <h1>Calculadora de Liquidación</h1>
        <form id="calculadoraForm">
            <label for="salarioDiario">Salario Diario Integrado (SDI):</label>
            <input type="number" id="salarioDiario" placeholder="Salario Diario Integrado" required>

            <label for="añosTrabajados">Años Trabajados:</label>
            <input type="number" id="añosTrabajados" placeholder="Años Trabajados" required>

            <label for="aguinaldoProporcional">Días de Aguinaldo Proporcional:</label>
            <input type="number" id="aguinaldoProporcional" placeholder="Días de Aguinaldo" required>

            <label for="diasVacaciones">Días de Vacaciones No Disfrutadas:</label>
            <input type="number" id="diasVacaciones" placeholder="Días de Vacaciones" required>

            <label for="primaVacacional">Prima Vacacional (%):</label>
            <input type="number" id="primaVacacional" placeholder="Prima Vacacional" required>

            <button type="button" onclick="calcularLiquidacion()">Calcular Liquidación</button>
        </form>

        <div id="resultado">
            <!-- Aquí se mostrará el resultado -->
        </div>
    </div>

    <script src="script.js"></script>
</body>
</html>

              
            
!

CSS

              
                body {
    font-family: 'Roboto', sans-serif;
    background-color: #1a1a2e;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    color: #fff;
}

.container {
    background-color: #16213e;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    width: 90%;
    max-width: 400px;
    text-align: center;
    border: 1px solid #0f3460;
}

h1 {
    color: #e94560;
    margin-bottom: 20px;
}

label {
    display: block;
    margin-top: 15px;
    color: #a6b1e1;
    text-align: left;
    font-weight: bold;
}

input[type="number"] {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    background-color: #0f3460;
    color: #fff;
    box-sizing: border-box;
    font-size: 16px;
}

input[type="number"]::placeholder {
    color: #a6b1e1;
}

button {
    background: linear-gradient(45deg, #e94560, #0f3460);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    margin-top: 20px;
    font-size: 16px;
    transition: all 0.3s ease;
}

button:hover {
    background: linear-gradient(45deg, #0f3460, #e94560);
    transform: scale(1.05);
}

#resultado {
    margin-top: 20px;
    padding: 20px;
    background-color: #1a1a2e;
    border-radius: 10px;
    color: #a6b1e1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid #0f3460;
    text-align: left;
}

              
            
!

JS

              
                function calcularLiquidacion() {
    // Obtener valores de entrada
    const salarioDiario = parseFloat(document.getElementById("salarioDiario").value);
    const añosTrabajados = parseInt(document.getElementById("añosTrabajados").value);
    const aguinaldoProporcional = parseFloat(document.getElementById("aguinaldoProporcional").value);
    const diasVacaciones = parseInt(document.getElementById("diasVacaciones").value);
    const primaVacacional = parseFloat(document.getElementById("primaVacacional").value) / 100;

    // Validar entradas
    if (isNaN(salarioDiario) || isNaN(añosTrabajados) || isNaN(aguinaldoProporcional) || isNaN(diasVacaciones) || isNaN(primaVacacional)) {
        alert("Por favor, completa todos los campos correctamente.");
        return;
    }

    // Calcular montos
    const indemnizacion = salarioDiario * 90; // 3 meses de salario
    const primaAntiguedad = (añosTrabajados >= 1) ? Math.min(salarioDiario * 12, 2 * 207.44 * 12) * añosTrabajados : 0; // 12 días de salario por cada año trabajado
    const pago20Dias = salarioDiario * 20 * añosTrabajados; // 20 días de salario por cada año trabajado
    const aguinaldo = (salarioDiario / 30) * aguinaldoProporcional; // Aguinaldo proporcional
    const vacaciones = (salarioDiario / 30) * diasVacaciones; // Vacaciones no disfrutadas
    const primaVac = vacaciones * primaVacacional; // Prima vacacional

    // Calcular total de liquidación
    const totalLiquidacion = indemnizacion + primaAntiguedad + pago20Dias + aguinaldo + vacaciones + primaVac;

    // Mostrar resultado con formato de separador de miles
    document.getElementById("resultado").innerHTML = `
        <h3>Total de Liquidación: $${totalLiquidacion.toLocaleString('es-MX', {minimumFractionDigits: 2})}</h3>
        <p>Indemnización: $${indemnizacion.toLocaleString('es-MX', {minimumFractionDigits: 2})}</p>
        <p>Prima de Antigüedad: $${primaAntiguedad.toLocaleString('es-MX', {minimumFractionDigits: 2})}</p>
        <p>Pago de 20 días por año: $${pago20Dias.toLocaleString('es-MX', {minimumFractionDigits: 2})}</p>
        <p>Aguinaldo proporcional: $${aguinaldo.toLocaleString('es-MX', {minimumFractionDigits: 2})}</p>
        <p>Vacaciones no disfrutadas: $${vacaciones.toLocaleString('es-MX', {minimumFractionDigits: 2})}</p>
        <p>Prima vacacional: $${primaVac.toLocaleString('es-MX', {minimumFractionDigits: 2})}</p>
    `;
}

              
            
!
999px

Console