-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrawacceldpicalculator.html
30 lines (26 loc) · 1.28 KB
/
rawacceldpicalculator.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html>
<head>
<title>Калькулятор DPI</title>
</head>
<body>
<h1>Калькулятор DPI</h1>
<p>Введите текущий DPI и желаемый DPI, затем нажмите "Рассчитать", чтобы получить множитель DPI:</p>
<input type="number" id="currentDPI" placeholder="Текущий DPI">
<input type="number" id="desiredDPI" placeholder="Желаемый DPI">
<button onclick="calculateMultiplier()">Рассчитать</button>
<p id="result">Здесь будет результат</p>
<script>
function calculateMultiplier() {
const currentDPI = parseFloat(document.getElementById("currentDPI").value);
const desiredDPI = parseFloat(document.getElementById("desiredDPI").value);
if (!isNaN(currentDPI) && !isNaN(desiredDPI)) {
const multiplier = currentDPI / desiredDPI;
document.getElementById("result").textContent = `Множитель DPI: ${multiplier}`;
} else {
document.getElementById("result").textContent = "Пожалуйста, введите корректные значения DPI.";
}
}
</script>
</body>
</html>