主页效果

时间:2014-08-28 10:10:48

标签: html css

我想知道:如何重新创建效果或内容页面来覆盖主页? http://visia.themes.tf/

我尝试使用“background:fixed”但它在iPhone上不起作用。虽然主题visia在iPhone上完美运作。

我试图查看代码源(ctrl + u on chrome)。但我没有找到#home id的属性。

提前谢谢。

1 个答案:

答案 0 :(得分:1)

    .header {
        position: relative;
        height: 100%;
        overflow: hidden;
    }
    .header img {
        height: 100%;
        vertical-align: center;
        position: fixed;
        top: 0;
        z-index: -1;
    }
    .content {
        background: #FFF;
        position: absolute;
        top: 100%;
        z-index: 2
    }

JSFIDDLE http://jsfiddle.net/jmtdjv19/6/