您好,欢迎访问一九零五行业门户网

在 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 上执行动画的详细内容。
其它类似信息

推荐信息