我剛開始使用Velocity.js,並試圖製作一個簡單的動畫,其中我將圓圈的顏色從紅色更改爲黃色。在HTML我只是...在Velocity.js中動畫改變顏色
<!DOCTYPE html>
<html>
<head>
<link href="https://code.jquery.com/ui/1.9.2/themes/smoothness/jquery-ui.css" rel="stylesheet" type="text/css" />
<script src="https://code.jquery.com/jquery-1.8.3.min.js"></script>
<script src="https://code.jquery.com/ui/1.9.2/jquery-ui.js"></script>
<script src="https://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="//cdn.jsdelivr.net/velocity/1.2.2/velocity.min.js"></script>
<script src="//cdn.jsdelivr.net/velocity/1.2.2/velocity.ui.min.js"></script>
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<body>
<svg height=300 width=300>
<circle id="example" cx=50 cy=50 r=20 fill="red"></circle>
</svg>
</body>
</html>
...,我試圖改變一圈黃色的顏色在我的JavaScript是這樣的:
$('#example')
.delay(1000)
.velocity({fill: "yellow"});
我在做什麼錯?
它的工作原理!非常感謝! :) – sleepycow