使用:http://byevan.com/web-template/BuzzApp/ 测试现场:http://justimaginewebdesigns.com/nathalie/mobile/ 图像附加了应该最终看起来像在所有设备上。 使用javascript锚定div到底部的链接。
问题:链接的Div容器无法与bg图像协调响应。
答案 0 :(得分:0)
这应该得到你假设你将使用移动优先设计的东西。你可能需要添加另外几个breapoints以在屏幕尺寸增加时使左边距正确。
您还应该从导航项中删除图像宽度和高度,然后使用
img {
width: 100%;
max-width: 100%;
}
然后在容器div上设置图像的宽度。
.homelinks {
position:fixed;
bottom:100px;
left: 5%;
-webkit-transition: all 0.3s ease-out;
-moz-transition: all 0.3s ease-out;
-o-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
}
@media Screen and min-width(700px){
.homelinks {
position:fixed;
bottom:100px;
left: 26%;
}}