进度条问题

使用creator编译后,web moile 网页版,安卓浏览器 进入整个游戏的进度条问题
使用IOS 浏览器safari 打开,入场的进度条没问题,
但是使用安卓的浏览器全部都是 进入进度条index.html页面,进度条先100%; 然后退回到0% 再加载到100%,,,mian.js没有做修改,
有还原链接
http://123.206.211.123:8800/earthquake/earthquake/build/web-mobile/index.html

谢谢反馈,进度条相关问题,争取在 1.11 或者 2.1 解决!

function setLoadingDisplay () {
// Loading splash scene
var splash = document.getElementById(‘splash’);
var progressBar = splash.querySelector(’.progress-bar span’);
cc.loader.onProgress = function (completedCount, totalCount, item) {
var percent = 100 * completedCount / totalCount;
if (progressBar

&& totalCount > 1

) {
progressBar.style.width = percent.toFixed(2) + ‘%’;
}
};

1赞

暂时可以这样解决