<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>时代Java与您共同学习(NowJava.com)</title>
<style>
#myDIV {
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-width: 600px;}
}
/* Standard syntax */
@keyframes mymove {
50% {max-width: 600px;}
}
</style>
</head>
<body>
<p>逐步改变 max-width, 从 "none" 到 "600px":<p>
<div id="myDIV">
<p>This DIV element does not have a pre-defined width.</p>
<p>Try resizing the browser window to see that width of this DIV element will grow/shrink along width the resizing, but it will never exceed 600 pixels in width.</p>
</div>
<p>max-width 属性支持动画效果。</p>
/**代码未完, 请加载全部代码(NowJava.com).**/
本文系作者在时代Java发表,未经许可,不得转载。如有侵权,请联系nowjava@qq.com删除。