始终按比例调整背景图像的大小以使用中心点缩放 [英] Resizing background-image always proportionally to scale with a center point

查看:653
本文介绍了始终按比例调整背景图像的大小以使用中心点缩放的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在调整大小时重现此网站图片的行为。

I want to be able to reproduce the behavior of this website's image when resizing.

似乎背景图片有一个中心点,

It seems like the background-image has a center point where the image start to crop when it cannot keep its proportion scale.

以下是一个示例:

http://themes.evgenyfireform.com/wp-jad/

现在我的背景有以下css:

For now my background has the following css:

#bg {
    position: fixed;
    top: 0;
    left: 0px;
    width:100%;
}

问题是它是固定的,

推荐答案

您正在寻找此组合:

background-position:50% 50%;  /* Sets reference point to scale from */
background-size:cover;        /* Sets background image to cover entire element */

这里工作示例fiddle。

Working sample fiddle here.

注意这是 IE8不支持,如果您需要IE8或更高版本,则需要JS hackery。

Note that this is not supported by IE8 and will require JS hackery there if you need IE8 or older to be supported.

这篇关于始终按比例调整背景图像的大小以使用中心点缩放的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆