<!DOCTYPE html>
<html lang="ru">
<head>
<meta http-equiv="content-type" content='text/html;charset="UTF-8"'>
<meta name="author" content="ChrisM">
<meta name="copyright" content=""........." ChrisM">
<meta name="discription" content="..........">
<meta name="keywords" content=".......................">
<!--|.......OTHER NAME........|-->
<title></title>
<style type="text/css"><!--
body, html, #parallax {
overflow-x: hidden;
overflow-y: auto;}
#parallax {
perspective: 1px;
height: 100vh;}
#layer-back {
position: relative;
height: 100vh;
transform-style: preserve-3d;}
#back {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-size: cover;
background: url(mainSpidey.jpg) no-repeat 100% 0;
transform: translateZ(-1px) scale(2);}
#layer-base {
position: relative;
height: 100vh;
transform-style: preserve-3d;
background: url(back1.jpg) repeat-y 50% 0;}
--></style>
<!--|........PREFIXFREE........|-->
<script src="Prefixfree/prefixfree.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!--|........OHNEMULL........|-->
<link rel="stylesheet" type="text/css" href="ohnemull.css">
</head>
<body>
<div id="parallax">
<div id="layer-back">
<div id="back"></div>
</div>
<div id="layer-base">
</div>
</div>
</body>
</html>
#back {
background-size: cover;
background: url(mainSpidey.jpg) no-repeat 100% 0;
}
background-image
background-position
background-size
background-repeat
background-origin
background-clip
background-attachment
background-color
#back {
background: url(mainSpidey.jpg) no-repeat 100% 0 / cover;
}
#back {
background: url(mainSpidey.jpg) no-repeat 100% 0;
background-size: cover;
}