51 lines
1.1 KiB
HTML
51 lines
1.1 KiB
HTML
<!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">
|
|
<title>Document</title>
|
|
<style>
|
|
.box {
|
|
width: 300px;
|
|
height: 300px;
|
|
background: red;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.box_2 {
|
|
width: 100px;
|
|
height: 100px;
|
|
background: yellow;
|
|
position: absolute;
|
|
left: 50%;
|
|
top: 50%;
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
|
|
.box_2:hover{
|
|
transform: scale(2.5);
|
|
}
|
|
.aaaaa {
|
|
font-size: 8px;
|
|
/* transform: scale(0.8);
|
|
display: inline-block;
|
|
transform-origin: 0 50%; */
|
|
zoom: 0.8;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
<div class="box">
|
|
<div class="box_2">222</div>
|
|
<span>测试</span>
|
|
<span class="aaaaa">哈哈哈</span>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |