固定背景封面在移动视图中变焦

dat*_*ign 10 html css mobile interface

我在我的网站上使用固定的背景封面:http://www.datisdesign.com

每个页面都有一个大的标题图像,但在手机等小型设备中,封面图像变得如此之大.我想在移动设备上缩小它.

这是我正在使用的代码:

#takelessons {
    background: url(../img/portfolio/takelessons-intro.jpg) no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center top;
}
Run Code Online (Sandbox Code Playgroud)

普通视图

移动视图

KM1*_*123 2

干得好 :)

将以下内容添加到您的风格中...

background-size:100%;
width:100%;
Run Code Online (Sandbox Code Playgroud)

我希望这有帮助