background-attachmentbackground-attachment:scroll | fixed scroll:背景图像是随对象内容滚动。 fixed:背景图像固定。background-color:background-color:transparent | color ...
分类:
其他好文 时间:
2014-08-08 17:49:36
阅读次数:
306
如图:关键点:1.scroll: 1, //虚拟滚动,解决大数据一次性加载慢的问题,同时解决分页2.function merge(names)//自定义函数$(function () { //查询 $("#querybtn").click(function () { ...
分类:
其他好文 时间:
2014-08-07 21:38:40
阅读次数:
297
弹出窗口两种方式:1.window.showModalDialog:var feature = "dialogWidth:615px;dialogHeight:505px;status:no;help:no;scroll:no;resizable:no;center:yes";window.show...
1. html中只有竖直滚动条1 {2 overflow-y:scroll;3 overflow-x:hidden;4 }或者:2. 没有垂直滚动条1 {2 overflow-y:hidden;3 overflow-x:scroll;4 }或者:3.没有滚动条{ ...
分类:
Web程序 时间:
2014-08-06 18:05:21
阅读次数:
214
相信大家有时候在展示一些实时数据展示并且数据量很大的时候,因为无法在同一页面看到最有效的数据,所以我们需要将滚动条至于底部,以便我们看到最需要的数据和信息;这里很明显的例子那拿windows的ping来说吧,当我们长ping的时候,这时候数据会越来越多,而且还是累加的,新数据又全部在后面,所以这个时候让滚动条一直处于底部就大有作为了!
大伙可以看一下,在windows的cmd中执行ping 地址...
分类:
Web程序 时间:
2014-08-05 15:55:50
阅读次数:
359
滚屏 uses MSHTML;vara: IHTMLDocument2;x,y:Integer;beginy:=y+20;//加减进行上下滚动a :=WebBrowser1.Document as IHTMLDocument2;a.Get_ParentWindow.Scroll(x,y);end;来...
分类:
其他好文 时间:
2014-08-01 19:37:42
阅读次数:
174
$(window).load(function(e){ waterfall(); var dataInt={'data':[{'src':'1.jpg'},{'src':'2.jpg'},{'src':'3.jpg'},{'src':'4.jpg'}]}; $(window).scroll(func...
分类:
Web程序 时间:
2014-08-01 19:22:32
阅读次数:
273
获取滚动条的宽度:function getScrollWidth() { var noScroll, scroll, oDiv = document.createElement('div'); oDiv.style.cssText = 'position:absolute; top:-1...
分类:
其他好文 时间:
2014-07-31 13:06:06
阅读次数:
237
NGUI,目前Unity3D Assert Store中最火的2D图形界面工具。本文假设读者有Unity3D使用经验。有基本了解。NGUI3.6.01.新建Pannel(Scroll View),确保Clliping为soft Clip2.Add Component增加Scroll View3.在S...
分类:
其他好文 时间:
2014-07-30 20:17:54
阅读次数:
234
自动滚动到最底端scrollUses MSHTML;{$R *.dfm}varScrollPos: integer=0;procedure TForm1.Button1Click(Sender: TObject);begininc(ScrollPos, 10);if WebBrowser1.Docu...
分类:
其他好文 时间:
2014-07-29 21:42:02
阅读次数:
506