我制作了一个 jquery 函数,其目的是每 5 秒添加一次填充,但它只工作一次。
<script type="text/javascript">
function aniMation(){
var top=0;
var left=0;
$('#frame').css({top:++top,left:++left})
}
$(function (){
setInterval(aniMation,5000)
})
</script>
<body>
<div class="main">
<div id="frame">
text
</div>