opencode-browser-tool-insta.../scripts/fixture_select_hover.html

41 lines
1,021 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Fixture Select Hover</title>
<style>
body {
font-family: sans-serif;
margin: 24px;
}
#menu {
display: inline-block;
padding: 8px 12px;
border: 1px solid #444;
}
#status {
margin-top: 12px;
color: #0a5;
}
</style>
</head>
<body>
<h1>Browser Tool Fixture</h1>
<div id="menu" onmouseover="window.hovered = true">Hover target</div>
<p id="status"></p>
<label for="kind">Kind:</label>
<select id="kind" onchange="window.kind = this.value">
<option value="">Choose</option>
<option value="general">General</option>
<option value="quirurgico">Quirurgico</option>
<option value="anestesia">Anestesia</option>
</select>
<script>
window.hovered = false
window.kind = ""
</script>
</body>
</html>