我想在我的网站上显示加载图标/插图,直到我们解决了网站上的大量加载时间问题。
但是装载机显得太迟了。您可以查看以下链接:https://nettbutikk.ellco.no/produkt/o20/并看到加载程序首次出现在加载结束时。
这是jQuery代码:
jQuery(document).ready(function() {
jQuery('#wptime-plugin-preloader').delay(2050).fadeOut("slow");
});
如何更改代码,以便加载程序在加载过程开始时出现?例如。我点击浏览器中的重新加载按钮后立即?
消除延迟没有帮助。
提前致谢!
答案 0 :(得分:0)
您的代码应该是这样的。
<script>
jQuery('#wptime-plugin-preloader').delay(2050).fadeOut("slow");
<script>
<body>
<div id="wptime-plugin-preloader"></div>
并删除此
<style type="text/css">
#wptime-plugin-preloader{
display:none !important;
}
</style>