有时项目中会遇到背景图固定,页面内容可以滚动,背景不随页面滚动而滚动。就像QQ空间、微博设置自定义背景图的固定选项。
其实很容易实现,利用 background-attachment:fixed; 就能实现,代码如下:
body{ background: url("bg.png"); background-repeat: no-repeat; background-attachment:fixed; }
未经允许不得转载:前端资源网 - w3h5 » HTML设定页面可滚定 背景图片固定
有时项目中会遇到背景图固定,页面内容可以滚动,背景不随页面滚动而滚动。就像QQ空间、微博设置自定义背景图的固定选项。
其实很容易实现,利用 background-attachment:fixed; 就能实现,代码如下:
body{ background: url("bg.png"); background-repeat: no-repeat; background-attachment:fixed; }
未经允许不得转载:前端资源网 - w3h5 » HTML设定页面可滚定 背景图片固定