Dobrý den,
udělal jsem že když vlezete na stránku tak tam je obrázek + text a když jedete dolu tak odjíždí obrázek a přijídi obsah stranky ale ten obsah zajizdi pod ten obrazek a já potřebuje aby se zasekl o text obrazek a společně s obrazkem odjížděl...... jestli jste pochopili jste dobry :D :D
HTML:
<header>
<h1>Detail Software</h1>
<p>Sense for detail.</p>
</header>
CSS:
html{
height: 100%;
overflow: hidden;
}
body{
color: white;
margin: 0;
padding: 0;
perspective: 1px;
transform-style: preserve-3d;
height: 100%;
overflow-y: scroll;
overflow-x: hidden;
font-family: "Luna";
background-color: black;
}
header{
box-sizing: border-box;
min-height: 100vh;
padding: 30vw 0 5vw;
position: relative;
transform-style: inherit;
width: 100vw;
}
header h1{
margin-top: -100px;
}
header, header::before{
background: 50% 50% / cover;
}
header::before{
bottom: 0;
content: " ";
left: 0;
position: absolute;
right: 0;
top: 0;
display: block;
background-image: url(obrazky/obrazek1.png);
background-size: cover;
transform-origin: center center 0;
transform: translateZ(-1px) scale(2);
z-index: -1;
min-height: 100vh;
}
header *{
font-weight: normal;
letter-spacing: 0.2em;
text-align: center;
margin: 0;
padding: 1em 0;
}