获取绝对位置坐标——offset()方法 var top = $(selector).offset().top; var left = $(selector).offset().left;获取相对位置坐标——position()方法 var top = $(selector).position...
分类:
Web程序 时间:
2014-07-25 13:51:41
阅读次数:
237
Among other things, Bob is keen on photography. Especially he likes to take pictures of sportsmen. That was the reason why he placed himself in position x0 of
a long straight racetrack and got ready...
分类:
其他好文 时间:
2014-07-25 11:26:31
阅读次数:
447
css样式:.animate{ width:65px; height:40px; background:#92B901; color:#ffffff; position:absolute; font-weight:bold; font:12px '微软雅黑'...
分类:
其他好文 时间:
2014-07-24 17:11:05
阅读次数:
295
传说中的Mozilla推荐Java代码/*mozilla.orgBaseStyles*maintainedbyfantasai*//*Suggestedorder:*display*list-style*position*float*clear*width*height*margin*padding...
分类:
Web程序 时间:
2014-07-24 17:07:25
阅读次数:
337
效果如下:html代码: click on me! CSS代码:#contentPopup { position: absolute; display: none; ...
分类:
其他好文 时间:
2014-07-24 14:42:15
阅读次数:
303
题目:Reverse a linked list from position m to n. Do it in-place and in one-pass.For example:Given 1->2->3->4->5->NULL, m = 2 and n = 4,return 1->4->3->....
分类:
编程语言 时间:
2014-07-24 09:49:43
阅读次数:
204
mobile开发如今已经越来越步入正规,很多问题也得到了各大浏览器厂商的支持和修正,比如今天要说的ipone下的fixed,如今Safari也的得到了支持,不过却还有些比较坑得地方。
今天要说得这个坑是关于safari全屏模式,当页面进入全屏模式(向下滚动以后页面默认会进入全屏模式)时页面底部就不可交互,看起来好像事件失效了一样,这个是时候窗口底部的任何工具栏,链接或者通过fixed底部...
分类:
其他好文 时间:
2014-07-23 22:35:27
阅读次数:
260
HTML代码优化表单域用fieldset包起来,并用legend说明其用途(注意在css初始化的时候把fieldset的border设为0,把legend的display设为none)每个input标签要用label来标注文本,并为每个input设id,用for关联。为了提高搜索引擎友好性,要减少t...
分类:
Web程序 时间:
2014-07-23 22:19:27
阅读次数:
295
【webQD】☆★之详解position:absolute、relative首先我们来看一下W3C对position的解释:我们再看,W3C对position属性值的解释:ok,我们需要了解的是:其中absolute和relative是最常用的,fixed用得也比较多(其中IE6并不支持fixed)。1、absolute(绝对定位)absolute是生成觉对..
分类:
Web程序 时间:
2014-07-23 21:09:46
阅读次数:
308
前面我在解读CSS中也说过了关于相对定位和绝对定位的问题,无奈还是有些童鞋表示迷茫,于是另开一篇博客,来详细解读相对定位和绝对定位,希望能够以我的点点星光,让后来者少走弯路。
所谓相对定位,就是设置为相对定位的元素会偏移某个距离,元素仍然保持原来的样式,它会保留该HTML元素的空间,比如我们看如下代码:
.demo{
position: relative;
width:50px;
h...
分类:
Web程序 时间:
2014-07-23 18:06:26
阅读次数:
302