本教程操作环境:windows10系统、CSS3&&HTML5版本、Dell G3电脑。
css3怎么实现高度渐变效果
可以利用动画效果实现。
animation属性可以设置元素的动画效果:
animation-name规定需要绑定到选择器的 keyframe 名称。。
animation-duration规定完成动画所花费的时间,以秒或毫秒计。
animation-timing-function规定动画的速度曲线。
animation-delay规定在动画开始之前的延迟。
animation-iteration-count规定动画应该播放的次数。
animation-direction规定是否应该轮流反向播放动画。
语法为:
animation: name duration timing-function delay iteration-count direction;
登录后复制
高度渐变可以利用transform 属性
transform 属性向元素应用 2D 或 3D 转换。该属性允许我们对元素进行旋转、缩放、移动或倾斜。
示例如下:
<!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>Document</title> <style> div{ width:100px; height:100px; background-color:pink; animation:fadenum 5s; } @keyframes fadenum{ 100%{height:300px;} } </style> </head> <body> <div></div> </body> </html>
登录后复制
输出结果:
(学习视频分享:css视频教程)
以上就是css3怎么实现高度渐变效果的详细内容,更多请关注Work网其它相关文章!