博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
html 网页背景图片根据屏幕大小CSS自动缩放
阅读量:5994 次
发布时间:2019-06-20

本文共 882 字,大约阅读时间需要 2 分钟。

https://blog.csdn.net/coslay/article/details/47109281

腾讯微博和QQ空间的登录背景图片是根据访客的屏幕大小自动缩放的,但是好像是用JQuery代码实现的。先不说要调用jq库拖慢了网页的打开时间,而且对于兼用性不好。

前几天用CSS研究出相同效果的样式代码。无论图片多大都能根据屏幕变化(当然图片尺寸越大越好)。而且在拉动网页窗体大小时会自动调节图片大小,实时交互。效果上图看不了。在这里放个连接,

CSS 代码如下:

#background {     position: fixed; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; background-color: #211f1f; display:none\8; } #background .bg-photo { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: none; overflow: hidden; -webkit-background-size: cover !important; -moz-background-size: cover !important; -o-background-size: cover !important; background-size: cover !important; } #background .bg-photo-1 { background: url('../image/alone.jpg') no-repeat center center; } #background-ie { position: fixed; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; background-color: #211f1f; }

HTML代码如下:

你可能感兴趣的文章
备忘-Android ViewPager 与Gallery滑动冲突解决方法
查看>>
sublime快捷键
查看>>
Codeforces Round#522 Div2E(思维,背包,组合数学)
查看>>
根据生日,计算年龄
查看>>
余数求和
查看>>
Kotlin入门(2)让App开发变得更容易
查看>>
C#二进制与字符串之间的相互转换
查看>>
Silverlight+WCF 新手实例 象棋 棋子移动-规则[将、马、士、相、炮](八)
查看>>
安装Linux Deploy和Termux之后,再安装ftp服务软件都是多余的!
查看>>
《怎样花两年时间去面试一个人》笔记
查看>>
网络编程bio流程Java demo
查看>>
Gym - 100269F Flight Boarding Optimization(dp+树状数组)
查看>>
Codeforces Global Round 1
查看>>
EXPORT Man Information for Linux use COMMAND col
查看>>
css+div水平居中
查看>>
1137 Final Grading
查看>>
20145213《Java程序设计》实验五Java网络编程及安全
查看>>
网络编程-第三节
查看>>
关于link标签的用法, 不声明rel=stylesheet则无效? 在ff中必须声明rel属性!
查看>>
Infer - 文件说明
查看>>