1、背景与前景 /*背景色,样式表优先级高*/ background-image:url(路径); /*设置背景图片(默认)*/ background-attachment:fixed; /*背景是固定的,不随字体滚动*/ background-attachment:scroll; /*背景随字体滚 ...
分类:
Web程序 时间:
2017-09-15 09:58:24
阅读次数:
261
样式属性 一:背景 1 background-color: 背景色 2 background-image:url(路径) 用来设置背景图 3 background-attachment: 1)后跟fixed 表示背景固定 2)后跟scrool 表示背景随字体滚动 5 background-repea ...
分类:
其他好文 时间:
2017-09-14 00:38:43
阅读次数:
235
视差滚动指网页滚动过程中,多层次的元素进行不同程度的移动,视觉上形成立体运动效果的网页展示技术。 利用background-attachment属性实现。 background-attachment:fixed || scroll || local; 默认情况下,此属性取值scroll,页面滚动时, ...
分类:
其他好文 时间:
2017-09-08 14:49:27
阅读次数:
148
一、background设置一个元素的背景样式 语法格式:background: color position size repeat origin clip attachment image; 1.background-color:设置元素的背景颜色(默认是透明) 2.background-pos ...
分类:
Web程序 时间:
2017-09-06 15:38:23
阅读次数:
261
#nav ul li a { /* background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment ...
分类:
Web程序 时间:
2017-09-04 13:24:18
阅读次数:
190
Content-Disposition参数:attachment 作为附件下载 inline 在线打开具体使用如:header("Content-Disposition: inline; filename=文件名.mp3"); Header("Content-Disposition:attachme ...
分类:
移动开发 时间:
2017-08-31 16:16:08
阅读次数:
173
background-position 属性 有三种表示方法: 总是以元素左上角为坐标原点对背景图片进行定位(padding-box,padding的边缘) background-origin 属性 background-attachment设置为fixed,background-origin将不起 ...
分类:
Web程序 时间:
2017-08-30 14:09:41
阅读次数:
192
1.右击.java文件,找到Build Path >Configure build path; 2.Libraries >rt.jar >Source attachment,点击Edit; 3. Apply,确定。 ...
分类:
系统相关 时间:
2017-08-24 14:52:00
阅读次数:
208
背景与前景:background-color:# 背景色 样式表优先级高 backround-image:url(路径);设置背景图 backround-attachment;fixed;背景是固定的 不随字体滚动 background-atttachment:scroll;背景跟随字体滚动 bac ...
分类:
其他好文 时间:
2017-08-15 23:07:55
阅读次数:
193