此示例http://raphaeljs.com/gear.html 有以下代码:
function run() {
e.animate({along: 1}, 2e4, function () {
e.attr({along: 0});
setTimeout(run);
});
}
本例中“2e4”的含义及其工作原理是什么?
答案 0 :(得分:12)
表示2 * 10 ^ 4
并在您的控制台2e4
中尝试,输出将为20000
e
是scientific符号
代码等同于
...
e.animate({along: 1}, 20000, function () { ....
答案 1 :(得分:4)
2e4
, 2 * 10^4
为scientific notation,因此其值与20000相同。