asp.net 页面逐步呈现的方法总结

热爱工作,投身事业,在这一过程中,抑制私心,陶冶人格,同时积累经验,提高能力。这样,才能获得周围人们的信任和尊敬。
详细介绍,请参考:flush 让页面分块,逐步呈现
假设有一个页面,一开始显示 cnblogs 的 logo 图标,3 秒钟后显示 csdn 的 logo 图标。 我根据上文介绍,用 asp.net 实现了上述功能。
ASP.NET 代码如下:
 
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="flush让页面分块逐步呈现.aspx.cs" Inherits="Web_1.flush让页面分块逐步呈现" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>flush让页面分块逐步呈现</title>
</head>
<body>
<div id="head" style="border:1px solid #ccc;">
cnblogs logo <img src="https://cdnss.haodaima.top/uploadfile/2023/0313/20230313035544604.gif" alt=""/>
</div>
<%
// flush分块输出
Response.BufferOutput = false;
Response.Flush();
// Response.Output.Flush();
%>
<br /> 3 秒后加载下面内容...
<div id="content" style="border:1px solid blue;">
<%
// 睡眠3秒
System.Threading.Thread.Sleep(3000);
%>
csdn logo <img src="https://cdnss.haodaima.top/uploadfile/2023/0313/20230313035544291.gif" alt=""/>
</div>
</body>
</html>
如果想实现 tudou.com 首页图片延迟加载的效果,则可以使用 jquery 轻松实现。
详细介绍,请参考:名站技术分析 - 浅谈 tudou.com 首页图片延迟加载的效果

JQuery 代码如下:
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
</head>
<body>
一开始能看到的图片:
<img src="http://at-img4.tdimg.com/board/2010/5/tylc-115X55.jpg"/>
<div id="lazyBox" style="margin-top:100px;">
一开始看不到下面的图片,滚动鼠标后可以看见:
<img width="120" height="90" style="border:1px solid blue;" class="lazyImg" alt="http://i01.img.tudou.com/data/imgs/i/051/871/396/m20.jpg" src="http://css.tudouui.com/skin/__g/img/sprite.gif" coords="_DBA"/>
</div>
<div style="height:1000px;"></div>
<script type="text/javascript">
var hasShow = false;
$(window).bind("scroll",function(){
if(hasShow==true){
$(window).unbind("scroll");
return;
}
var t = $(document).scrollTop();
if(t>50){
// 滚动高度超过50,加载图片
hasShow = true;
$("#lazyBox .lazyImg").each(function(){
$(this).attr("src",$(this).attr("alt"));
});
}
});
</script>
</body>
</html>

到此这篇关于asp.net 页面逐步呈现的方法总结就介绍到这了。热情和欲望可以突破一切难关。更多相关asp.net 页面逐步呈现的方法总结内容请查看相关栏目,小编编辑不易,再次感谢大家的支持!

标签: asp net