在iframe获取父页面DOM元素已经变量和方法
window.parent 是iframe页面调用父页面对象 1)在iframe中查找父页面元素的方法: $('#id', window.parent.document) 2)在iframe中调用父页面中定义的方法和变量: parent.method parent.value 父页面: <script> var nihao='你好'; functio…
666 2015-03-13 去围观jquery简单拖拽效果
js 拖拽 drag 此案例有一个问题就是 快速拖拽的话被拖拽层会脱离。解决方法就是鼠标脱离被拖拽层时,给拖拽层一个mouseout事件,事件内容是给document绑定一个mousemove事件,让拖拽层跟着document跑就行了。 参考此案例:drag11 至…
589 2015-03-04 去围观CSS交替固定网页背景视觉差特效
css 背景图片 视觉差 视觉差特效其实也就是使用到了background-attachment:fixed css背景属性复合型写法:background:url(img/cd-background-1.jpg) no-repeat center top fixed; 在线演示
583 2015-03-03 去围观php创建图片相关实例
一、首先创建一个简单用PHP的图片 header('Content-Type: image/png;'); //声明此页面是图片文档 $im = imagecreatetruecolor(200,200); //创建图片画板 (宽、高) $blue = imagecolorallocate($im,0,102,255); //准备填充颜色 (画板 红绿蓝) imagefill($im,…
610 2015-02-22 去围观