实例首页
自学教程
IT工具箱
源代码
下载代码
上下布局
点击运行 >
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>css animation max-height 实例 - 自学教程(runoops.com)</title> <style> #myDIV { width: 500px; background-color: lightblue; overflow: auto; border: 1px solid black; -webkit-animation: mymove 5s infinite; /* Chrome, Safari, Opera */ animation: mymove 5s infinite; } /* Chrome, Safari, Opera */ @-webkit-keyframes mymove { 50% { max-height: 100px; } } /* Standard syntax */ @keyframes mymove { 50% { max-height: 100px; } } </style> </head> <body>
运行结果: