文件操作 - preloader-plus.js
返回文件管理
返回主菜单
删除本文件
文件: /root/Desktop/OLD/plugin-wordpress/preloader-plus/assets/js/preloader-plus.js
编辑文件内容
jQuery(function($){ var width = 100, perfData = window.performance.timing, // The PerformanceTiming interface represents timing-related performance information for the given page. EstimatedTime = -(perfData.loadEventEnd - perfData.navigationStart), time = parseInt((EstimatedTime/1000)%60)*100; var preloader = document.querySelector(".preloader-plus"); $('body').prepend(preloader); var progBar = document.querySelector(".prog-bar"), start = 0, end = 70, duration = time, counter = document.getElementById("preloader-counter"); animateValue(progBar, start, end, duration); function animateValue(element, start, end, duration) { var range = end - start, current = start, increment = end > start? 1 : -1, stepTime = Math.abs(Math.floor(duration / range)), obj = element; var timer = setInterval(function() { if(current < end) { current += increment; } if (obj !== null) { obj.style["transition-duration"] = "0.001s"; obj.style.width= current + "%"; } if (counter !== null) { counter.innerHTML = current + "%"; } if ( ( current == end && perfData.loadEventEnd > 0 ) || perfData.loadEventEnd > 0 ) { var endLoading = setInterval( function() { current += increment; if (obj !== null) { obj.style.width= current + "%"; } if (counter !== null) { counter.innerHTML = current + "%"; } if(current == 100) { setTimeout( function() { $('body, .preloader-plus').addClass('complete'); }, preloader_plus.animation_delay) clearInterval(endLoading); } }, 1) clearInterval(timer); } }, stepTime); } });
修改文件时间
将文件时间修改为当前时间的前一年
删除文件