fixed真的是一个很好的属性。特别是做弹层的时候。可惜的是“国内主流浏览器”IE6大大不支持。
一般的我们都会通过CSS中的表达式来解决这个问题。
.fixed {
position:absolute;
left:expression(eval(document.documentElement.scrollLeft));
top:expression(eval(document.doc...
分类:
其他好文 时间:
2014-07-22 23:03:15
阅读次数:
318
[ 问题: ]
Given a sorted array and a target value, return the index if the target is found. If not, return the index where it would be if it were
inserted in order. You may assume no duplicates in th...
分类:
其他好文 时间:
2014-07-22 23:01:15
阅读次数:
270
EditorGUI.ProgressBar 进度条static
functionProgressBar(position:Rect,value: float,text: string) :
voidParameters参数totalPositionRectangle on the screen to...
分类:
其他好文 时间:
2014-05-10 01:28:36
阅读次数:
440
1 div{ 2 position: relative; 3 } 4 em ,span{ 5
border-style:solid dashed dashed dashed; 6 border-color:transparent; 7...
分类:
Web程序 时间:
2014-05-09 12:40:06
阅读次数:
295
1. ListView需要设置adapter,它的item是通过adapter的方法getView(int position, View convertView, ViewGroup parent)获得的。
2. ListView中只有第一屏的item需要新建,它的引用会被存在RecycleBin对象内,在拖动时后面的item实际上是重从了之前创建的item。3. 根据上述,ListView在需...
分类:
其他好文 时间:
2014-05-04 09:50:38
阅读次数:
345
BufferBufferMark<=Position
<=Limt<=Capacity状态变量position:在从通道读取时,将所读取的数据放到底层的数组中。position变量跟踪已经写了多少数据。它指定了下一个字节将放到数组的哪一个元素中。因此,如果从通道中读三个字节到缓冲区中,那么缓冲区的p...
分类:
其他好文 时间:
2014-05-01 07:54:06
阅读次数:
326
今天不在状态,五一快到了,俺就特想玩了。好了,天色已晚,闲话不多说,看下用javaScript
实现的图片自动轮换效果,先看图片
下面是具体的代码,还是比较简单的。
越狱的囚徒
.content{
border:3px solid red;
padding:3px;
width:500px;
height:245px;
position:relative;
}
...
分类:
Web程序 时间:
2014-04-30 22:24:38
阅读次数:
358
好久不写CSS代码 感觉忘的差不多了,代码就是要多敲才行的。就行武林中的武者一样,每天都要勤加练习才可。
正好写写博客,就当复习复习。
position 主要是用来 元素的定位方式
static : 无特殊定位,对象遵循HTML定位规则
absolute : 将对象从文档流中拖出,使用left,right,top,bottom等属性进行绝对定位。而其层叠通过z-index属性定义。此...
分类:
Web程序 时间:
2014-04-29 13:45:20
阅读次数:
354
用JS写出 遮罩层登陆框 和 对联广告 并自动跟随滚动条 滚动 保持让用户一直可以看到
好了,天色已晚废话不多说,代码特别详细 有注释,请看代码。
================》
越狱的囚徒
#zhezhao{ /*遮罩层 先隐藏起来 后面我会通过JS修改display: 为block 让他显示出来*/
position:absolute;
z-index:1000;...
分类:
Web程序 时间:
2014-04-29 13:35:23
阅读次数:
345
希望能帮到需要的人:http://www.see-design.com.tw/i/css_position.html
1. position:static
元素的 position 屬性默認值為:static,即該元素出現在文檔的常規位置,不會重新定位。
通常此屬性值可以不設置,除非是要覆蓋之前的定義。
#div-1 {
position:static;
}...
分类:
Web程序 时间:
2014-04-29 13:14:22
阅读次数:
309