<!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>高度过渡</title>
<style>
.box1 {
transition: max-height 0.5s;
max-height: 0;
overflow: hidden;
}
.box:hover > .box1 {
max-height: var(--max-height);
}
</style>
</head>
<body>
<div class="box">
Hover me to see a height transition.
<div class="box1">
CSS
transition: max-height: 0.5s cubic-bezier(...)指定更改为max-height应使用ease-out-quint定时函数。
overflow: hidden防止隐藏元素的内容溢出其容器。
max-height: 0指定元素最初没有高度。
.target:hover > .el指定当父项悬停在上方时,以子项为目标.el并使用--max-height由JavaScript定义的变量。
JavaScript
el.scrollHeight是包含溢出的元素的高度,它将根据元素的内容动态更改。
el.style.setProperty(...)设置--max-height用于指定max-height目标悬停在其上的元素的,允许它从0平滑过渡到auto。
</div>
</div>
<script>
var box1 = document.querySelector('.box1');
var height = box1.scrollHeight;
box1.style.setProperty('--max-height', height +'px')
</script>
</body>
</html>
网友评论