背景原点:background-origin 图片起始位置 border-box包括边框 padding-box边框内 content-box 内容内 **background-repeat 为no-repeat才有效 背景显示区域background-clip 超过部分被裁剪,属性同上 背景尺寸b ...
分类:
Web程序 时间:
2016-08-15 12:44:22
阅读次数:
141
1.translate 坐标对应xy轴. 2.scale 缩放. 3.transition控制过度的属性,tranfrom是控制变换的样式,基本有形状位置旋转。4.background-origin 5.background-clip 超出的范围不要。 6.多重背景background:[backg ...
分类:
其他好文 时间:
2016-08-15 11:32:20
阅读次数:
201
一:背景样式 1,背景原点 设置元素背景图片的原始起始位置。必须保证背景是background-repeat为no-repeat 此属性才会生效。 语法: background-origin : border-box | padding-box | content-box; 2,背景的显示区域 设定 ...
分类:
其他好文 时间:
2016-08-15 01:32:32
阅读次数:
180
background-origin(背景原点) 设置元素背景图片的原始起始位置。必须保证背景是background-repeat为no-repeat属性才能生效。 background-origin:border-box|padding-box|content-box; border-box 这是用 ...
分类:
Web程序 时间:
2016-08-14 23:48:35
阅读次数:
305
background-origin 设置元素背景图片的原始起始位置。必须保证背景是background-repeat为no-repeat此属性才会生效。可取值有 border-box | padding-box | content-box border-box:设置背景图片原点在边框的最左上角 pa ...
分类:
Web程序 时间:
2016-08-14 22:07:56
阅读次数:
177
git本地仓库同步到远程仓库上 $ git remote add origin http://github.com/powfulCsharp/NuUserControl.git $ git push -u origin master 把远程仓库用git clone +url 克隆到本地 在远程仓库用 ...
分类:
其他好文 时间:
2016-08-14 17:55:13
阅读次数:
172
background: background-origin属性规定background-position属性相对于什么位置来定位,而background-clip 属性规定背景的绘制区域,这两个要注意区分。 background-size规定图像的大小,该属性可用来定义动画。 以上属性都可以用bac ...
分类:
Web程序 时间:
2016-08-14 15:59:42
阅读次数:
322
background-origin 设置元素背景图片的原始起始位置。必须保证背景是background-repeat为no-repeat此属性才会生效。 background-origin :border-box | padding-box | content-box; padding-box:从p ...
分类:
其他好文 时间:
2016-08-14 07:51:39
阅读次数:
154
背景样式 背景原点:background-origin : border-box(从border区域(含border)开始显示背景图像。) padding-box(从padding区域(含padding)开始显示背景图像。) content-box(从content区域开始显示背景图像。) <bod ...
分类:
其他好文 时间:
2016-08-14 07:45:18
阅读次数:
200
第16章 HTML5脚本编程 1.跨文档消息传送XDM:向包含在当前页面的<iframe>元素或由当前页面弹出的窗口传递数据。 原窗口发送:postMessage(内容,目标域名) 目标窗口接收后触发window对象的message事件,event对象的属性有data,origin,source 2 ...
分类:
Web程序 时间:
2016-08-12 23:48:06
阅读次数:
179