/*HTML*/
div.container
div.bg
h1{...}
p{...}
/*CSS*/
.container{
overflow-y:scroll;
overflow-x:hidden;
perspective:1px;
transform-style:preserve-3d;
color:yellow;
text-align:center;
}
.bg{
width: 100vw;
height: 40vh;
position:relative;
}
h1{
padding:100px;
}
.bg:before{
position:absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
content:"";
display:block;
background: url("http://7xu8mu.com1.z0.glb.clouddn.com/katong_1.jpg");
background-size:cover;
z-index: -1;
transform:translateZ(-1px) scale(2);
}
All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.
Comment