我第一次使用 jquery 动画。我已经读过动画可以在 .Toggle() 或 .click() 函数上完成,但我想假设在页面加载时更改 div 的 bgcolor。我试过了,但它在这里不起作用是我的代码。
<html>
<head>
<scriptsrc="http://code.jquery.com/jquery-latest.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js">
</script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery- ui.min.js">
</script>
<script> $(document).ready(function(){
$('block').animate({ backgroundColor: "black" }, 1000);
});
</script>
<style>
.block {
color: white;
background-color: #68BFEF;
width: 150px;
height: 70px;
margin: 10px; }
</style>
</head> <body >
<div class="block"> hi</div>
</body>
</html>