Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
vimeo API(带有 froogaloop)的函数之一是 getDuration()。
我正在尝试创建一个返回持续时间的函数,但不知何故我得到了 Object 作为结果。Vimeo API 文档未指定您应该如何执行此操作。
我认为这是不正确的:
function getDuration() { return player.api('getDuration'); }
这是一个例子:
http://jsfiddle.net/SeBwt/
getDuration()接受一个回调函数,为您提供媒体的持续时间。
getDuration()
例如:
player.api('getDuration', function(dur) { alert(dur); });
演示