1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<title>편리한 숫자 입력</title></head>
<body>
<h3>홈 제어 시스템 - 온도 조절</h3>
<hr>
<form>
// 스핀버튼으로 정교한 값 입력 : <input type="number">
    지속시간 (0.0~10.0시간) :
    <input type="number" min="0.0" max="10.0"
                         step="0.5" value="3"><br><br>

// 슬라이드바로 대략적인 값 입력 : <input type="range">
    온도 설정 :    10&deg;

    <input type="range" min="10" max="30"
                    list="temperatures">30&deg; // list와 밑에 id를 똑같이 해줘야 연결이된다.
    <datalist id="temperatures">
         <option value="12" label="Low"> // value값을 조절할수록 조절이된다.
         <option value="20" label="Medium">
         <option value="28" label="High">
    </datalist>
</form>
</body>
</html>
 
cs







 

Posted by 너래쟁이
: