◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。
要使用 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>
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。