xugang 记录一个.NET 程序员的成长 关于页面逐步呈现的总结

本文介绍如何利用分块编码技术实现网页内容的逐步呈现,并通过jQuery实现类似土豆网首页的图片延迟加载效果。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >


分块编码 ( chunked encoding )
就是让 response 分块编码进行传输。response 分块编码,可以先传输一部分不需要处理的 html 代码到客户端,等其他耗时代码执行完毕后再传输另外的 html 代码。

详细介绍,请参考:高性能 WEB 开发(11) - flush 让页面分块,逐步呈现


假设有一个页面,一开始显示 cnblogs 的 logo 图标,3 秒钟后显示 csdn 的 logo 图标。

我根据上文介绍,用 asp.net 实现了上述功能。

ASP.NET 代码如下:

复制代码
ExpandedBlockStart.gif flush让页面分块逐步呈现.aspx
<% @ 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 ="http://images.cnblogs.com/logo_small.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 ="http://csdnimg.cn/www/images/csdnindex_piclogo.gif" alt ="" />
</ div >
</ body >
</ html >
复制代码


JSP 代码如下:

复制代码
ExpandedBlockStart.gif flush让页面分块逐步呈现.jsp
<! 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" />
< title >flush让页面分块逐步呈现 </ title >
</ head >
< body >
< div id ="head" style ="border:1px solid #ccc;" >
cnblogs logo < br />
< img src ="http://images.cnblogs.com/logo_small.gif" />
</ div >
<%
out.flush(); // flush response,分块输出
%>
< br />
< div id ="content" style ="border:1px solid blue;" >
<%
// 睡眠3秒
Thread.currentThread().sleep( 3000 );
%>
csdn logo < br />
< img src ="http://csdnimg.cn/www/images/csdnindex_piclogo.gif" />
</ div >
</ body >
</ html >
复制代码

演示地址:http://213.186.44.204:8080/ChunkTest/chunk.jsp

如果想实现 tudou.com 首页图片延迟加载的效果,则可以使用 jquery 轻松实现。
详细介绍,请参考:名站技术分析 - 浅谈 tudou.com 首页图片延迟加载的效果

JQuery 代码如下:

复制代码
ExpandedBlockStart.gif JQuery实现图片延迟加载的效果.html
<! 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 >
复制代码


相关阅读:

高性能WEB开发(11) - flush 让页面分块,逐步呈现

名站技术分析 - 浅谈 tudou.com 首页图片延迟加载的效果

名站技术分析 — facebook 奇特的页面加载技术

让 ajax 更加友好,实时显示后台处理进度




本文转自钢钢博客园博客,原文链接:http://www.cnblogs.com/xugang/archive/2010/06/22/1762701.html,如需转载请自行联系原作者

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值