20 lines
547 B
HTML
20 lines
547 B
HTML
{1488c367b422ef1dde98bf5ba83990e7402d086b true 547 index.html 0xc002a85570}
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="style.css">
|
|
<title>Document</title>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<span id="rangeValue">0</span>
|
|
<input class="range" type="range" name="" value="0"
|
|
min="0" max="1000" onmousemove="range(this.value)"
|
|
onchange="range(this.value)">
|
|
</div>
|
|
<script src="main.js">
|
|
</script>
|
|
</body>
|
|
</html> |