moved rrweb-snapshot into packages/rrweb-snapshot
This commit is contained in:
31
packages/rrweb-snapshot/test/html/hover.html
Normal file
31
packages/rrweb-snapshot/test/html/hover.html
Normal file
@@ -0,0 +1,31 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||||
<title>hover selector</title>
|
||||
<style>
|
||||
|
||||
div:hover {
|
||||
background: orange;
|
||||
}
|
||||
|
||||
div:hover::after {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 100%;
|
||||
content: 'dropdown';
|
||||
width: 100px;
|
||||
height: 200px;
|
||||
background: lightblue;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div>hover me</div>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user