`
yimeng500
  • 浏览: 54655 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论
文章列表
有时为了提高html页面的图片的加载速度,我们一般都将所有的图片都集合到一张大的图片上,然后使用css中的定位图片某个位置的方法来加载图片.为了方便定位,写了一个小工具,呵呵,还是挺方便的,直接选择你的图片的位置,然后移动你的鼠标就可以了.
前几天做项目时一个div加了滤镜效果,但是里面的字的颜色也变得很淡,下面是处理的方法 <div style="filter:alpha(opacity=50);background:red;width:600;">       <span style="color:black">图层背景半透明,字体颜色也半透明</span>  </div>    <div style="filter:alpha(opacity=50);background:red;width:600"> ...

分页样式

    博客分类:
  • css
前几天有个以前的同事让我帮他在网页中加个分页的样式,所以从网上找了一些,但是加载进去字总是居左,自己就调试了一下,最后问题出在float这个属性上面,把修改好的上传了.
     偶然在google code中看到一个这样的代码,用来解决在客户端存储数据的解决方案,我们平时都经常使用cookie存储数据,但是cookie有一定的局限性,使用flash存储能解决cookie所存在的局限,所以把代码整理了一下.
有时嵌套多层div时,可能由于设置了内层div的top和left是相对与外层div来说的,所以有时计算内部的div到body的边的距离会出现错误,此时,只需要循环div的外层的多个父节点,累加就能得到最终的结果,函数如下. function absPos(node){ var x=y=0; do { x+=node.offsetLeft; y+=node.offsetTop; } while(node=node.offsetParent); return { 'x':x, 'y':y }; }
只需要设置div的css属性   vertical-align:middle就可以了
span作为块元素,在没有设定float样式时是不能设定高度的,所以在设定高度之前一定要设定其float:left样式
模仿163邮箱的发送,转发按钮.
<!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=gb ...
截取abcdefg右边的fg <script> string="abcdefg" alert(string.substring(string.length-2,string.length)) </script> <script> alert("abcdefg".match(/.*(.{2})/)[1]) </script> <script> alert("abcdefg".match(/.{2}$/)) </script> <script> ale ...
<head><title></title> <style> body { font-size:12px; color:#333333; border : 0px solid blue; } div { position : absolute; background-color : #c3d9ff; margin : 0px; padding : 5px; border : 0px; width : 100px; height:100px; } </style> </head> ...
研究了一下prototype的ajax源码知道了提交大数据量时的参数不是parameters而是postBody,所以设置参数时注意设置为    var content="content=传递的值" var  ajax=new Ajax.Request(url,{method:'post',postBody: content,onComplete: this.Callback});、 服务器端直接用String content=request.getParameter("content");如果出现乱码看上一篇文章就解决了。
       以前没有用过post提交数据,这次需要提交大数据,所以要使用到post提交,但是post提交到服务器的时候,服务器端总是乱码,后来知道post提交的数据都是以utf-8格式提交的,所以服务器端接收的都是问号一类的数据,所以要在服务器端进行数据格式的转换,因为传递的是utf-8格式的,所以我们只需要转化为原来的数据格式就不会乱码了,我用的方法是 path = new String(request.getParameter("参数").getBytes("ISO-8859-1"), "utf-8");这样问题就解决了。 第二种 ...
<html xmlns="http://www.w3.org/1999/xhtml" lang="gb2312"> <head> <script type="text/javascript"> function doSomething (obj,evt) { alert(obj.id); var e=(evt)?evt:window.event; if (window.event) { e.cancelBubble=true; } else { e.stopPropagation( ...
语法: oElement = document . elementFromPoint ( iX , iY ) 参数: iX :  必选项。整数(Integer)。单位:象素(Pixel)。定位横坐标偏移量。 iY :  必选项。整数(Integer)。单位:象素(Pixel)。定位纵坐标偏移量。 返回值: oElement :  对象(Element)。返回获取的对象的引用。 说明: 根据横纵坐标值 iX 和 iY 获取对象 oElement 。 oElement 必须支持和响应鼠标事件。 提供的坐标是客户区坐标。客户区的左上角为 (0,0)。 当将此方法用于 Struc ...
Global site tag (gtag.js) - Google Analytics