init working
This commit is contained in:
18
popup.html
Normal file
18
popup.html
Normal file
@ -0,0 +1,18 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<title>Volume Slider</title>
|
||||
<style>
|
||||
body { font-family: sans-serif; min-width: 220px; padding: 12px; }
|
||||
label { font-weight: bold; }
|
||||
input[type=range] { width: 100%; }
|
||||
.value { margin-left: 8px; font-weight: bold; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<label>Volume <span id="val">100</span></label>
|
||||
<input id="slider" type="range" min="0" max="100" value="100">
|
||||
<script src="popup.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user