我使用此页面中的示例,它适用于提交案例。
http://www.aspsnippets.com/Articles/Display-loading-image-while-PostBack-calls-in-ASPNet.aspx
但是当用户刷新页面时(通过按钮刷新浏览器或F5),此指示符不会显示。我尝试使用卸载/加载事件,但它不起作用。 有没有人有任何想法?
提前致谢!
答案 0 :(得分:0)
这就是你如何使用CSS。
http://tjvantoll.com/2013/04/24/showing-a-css-based-loading-animation-while-your-site-loads/
html {
-webkit-transition: background-color 1s;
transition: background-color 1s;
}
html, body {
/* For the loading indicator to be vertically centered ensure */
/* the html and body elements take up the full viewport */
min-height: 100%;
}
html.loading {
/* Replace #333 with the background-color of your choice */
/* Replace loading.gif with the loading image of your choice */
background: #333 url('loading.gif') no-repeat 50% 50%;
/* Ensures that the transition only runs in one direction */
-webkit-transition: background-color 0;
transition: background-color 0;
}
body {
-webkit-transition: opacity 1s ease-in;
transition: opacity 1s ease-in;
}
html.loading body {
/* Make the contents of the body opaque during loading */
opacity: 0;
/* Ensures that the transition only runs in one direction */
-webkit-transition: opacity 0;
transition: opacity 0;
}
一旦您的页面加载在底部完成,您可以编写一个javascript来删除加载类。
$( "html" ).removeClass( "loading" );
以下是该网站的实例。
答案 1 :(得分:0)
我在我的asp.net项目中使用Telerik Radmenu,我所做的是在我的母版页中添加不同名称的showProgress javascript,并在radMenu OnClientItemClicked上调用javascript函数。
如果您不使用Telerik,请尝试使用标记从导航栏调用javascript函数。 测试 enter link description here