Elastic缓动。
n
数值。输入0~1
.输出。输出0~1
.
<svg id="svg" width="250" height="100"></svg> <input id="button" type="button" class="zhxx_api_button" value="点击运动">
var c = Snap("#svg").paper.circle(50,50,40).attr({ fill: "red" }); document.getElementById("button").onclick = function() { c.animate({ cx: c.attr("cx") == 50? 150 : 50 }, 1000, mina.elastic); };