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.
我的应用程序中有带有 css3 动画的自定义预加载器,但是当声音完成加载时,预加载器仍然移动。我在 jplayer.org 上的文档中进行了搜索,但似乎不是这样,在加载数据时隐藏此预加载器。
我找到了这个问题的答案:
$("#jquery_jplayer_1").bind($.jPlayer.event.progress, function (event) { if (event.jPlayer.status.seekPercent === 100) { // loading complete } else { // Still loading } });