在 CSS max-width 上执行动画
原创
要使用 CSS 实现 max-width 属性的动画,您可以尝试运行以下代码
示例
现场演示
<!DOCTYPE html> <html> <head> <style> div { overflow: auto; background-color: blue; color: white; border: 1px solid black; animation: myanim 3s; } @keyframes myanim { 30% { max-width: 250px; } } </style> </head> <body> <h1>Example of max-width</h1> <div> <p>This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. </p> </div> </body> </html>
以上就是在 CSS max-width 上执行动画的详细内容,更多请关注IT视界其它相关文章!
上一篇:CSS 中的相对长度单位 下一篇:使用 CSS 选择所有具有 alt 属性的元素