見出し画像

計算機.割り勘.背景

せっかく開くなら、視覚的に気分のあがるページを。

アプリの見た目を親しみやすく、かつ使いやすいデザインに。

変更点:

【 背景画像の追加 】

`background-image` プロパティを使用して指定の画像を設定

`background-size: 200px` で画像サイズを調整

`background-repeat: repeat` でタイル状に繰り返し表示


【 デザインの調整 】

計算機のコンテナに半透明の背景色を設定

`backdrop-filter: blur(5px)` で背景にぼかし効果を追加

青色のアクセントカラーを追加して画像と調和させる

ボーダーやシャドウを強調して視認性を向上


<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>割り勘計算機</title>
<style>
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-image: url('https://hebbkx1anhila5yf.public.blob.vercel-storage.com/pcimage.jpg-yifSorCOK0JCIAiExVybllwOulhh03.jpeg');
background-size: 200px;
background-repeat: repeat;
background-color: #f0f0f0;
}
.calculator {
background-color: rgba(255, 255, 255, 0.95);
padding: 2rem;
border-radius: 10px;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
text-align: center;
backdrop-filter: blur(5px);
border: 2px solid #4a90e2;
}
h1 {
color: #4a90e2;
margin-bottom: 1rem;
}
input {
width: 100%;
padding: 0.5rem;
margin: 0.5rem 0;
border: 2px solid #4a90e2;
border-radius: 4px;
box-sizing: border-box;
}
button {
background-color: #4a90e2;
color: white;
border: none;
padding: 0.5rem 1rem;
margin: 1rem 0;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s;
font-weight: bold;
}
button:hover {
background-color: #357abd;
}
#result {
font-size: 1.2rem;
font-weight: bold;
margin-top: 1rem;
color: #4a90e2 ;
}
</style>
</head>
<body>
<div class="calculator">
<h1>割り勘計算機</h1>
<input type="number" id="total" placeholder="合計金額" min="0" step="1">
<input type="number" id="people" placeholder="人数" min="1" step="1">
<button onclick="calculate()">計算する</button>
<div id="result"></div>
</div>

<script>
    function calculate() {
        const total = parseFloat(document.getElementById('total').value);
        const people = parseInt(document.getElementById('people').value);
        const resultElement = document.getElementById('result');

        if (isNaN(total) || isNaN(people) || total <= 0 || people <= 0) {
            resultElement.textContent = '正しい値を入力してください。';
            return;
        }

        const perPerson = Math.ceil(total / people);
        resultElement.textContent = `一人あたり: ${perPerson}円`;
    }
</script>

</body>
</html>

いいなと思ったら応援しよう!