javascript - transition height auto 过渡动画
问题描述
1.为什么收缩时,没有动画效果?
2.代码
<!DOCTYPE html><html lang='en'><head> <title></title> <meta charset='UTF-8'> <meta name='viewport' content='width=device-width, initial-scale=1'> <style>* { transition: all .6s;}.container { position: fixed; top: 0; left: 0; right: 0; height: 100px; max-height: 100px; width: 100px; margin: 5px auto; background: RGBA(0, 43, 54, 0.80); overflow: hidden; text-align: center;}.container:hover { height: auto; max-height: 100%; bottom: 0px;} </style></head><body> <p class='sketch'><p class='container'> <!--<a href='javascript:void(0)'>开关</a>--></p> </p> <!--<script>const classList = document.querySelector(’.container’).classList;document.querySelector(’#switch’).addEventListener(’click’, function (e) { if (classList.contains(’expand’)) {document.querySelector(’.container’).classList.remove(’expand’); } else {document.querySelector(’.container’).classList.add(’expand’); }}); </script>--></body></html>
3.在线Demo(己解决)
问题解答
回答1:因为我们所能看到的过渡动画,其实是height值的变化过程,而你在hover属性中,并没有给height赋予明确的值,因此在移出鼠标之后,浏览器其实并不知道该从哪个值变化到初始值,于是就直接返回到初始值,所以没有过渡效果
回答2:原因如1楼所说。可以设置height:100%;。
回答3:.container:hover { height: 100%; // 这个要明确值 max-height: 100%; bottom: 0px;}
相关文章:
1. node.js - 如何解决阿里云上nodejs不支持import,项目npm run build后报Unexpected token import2. 为什么谷歌访问助手安装好以后还是不是访问谷歌网上应用店?3. mysql-配置 - MySQL错误,时不时自动挂掉,无法启动4. mysql - 数据库:获取两个字段与获取*,传输的数据量差距大吗?5. linux - redis连接池应用在一万并发下时连接数只有2?6. 如何用笔记本上的apache做微信开发的服务器7. composer包时报错8. transform - CSS3的3D变换多次变换如何保持坐标轴不动,或者有矩阵算法可以实现否9. 这是什么情况???10. javascript - vue.js如何递归渲染组件.

网公网安备